WEB开发网
开发学院WEB开发ASP.NET asp.net 2.0中加密web.config 阅读

asp.net 2.0中加密web.config

 2006-01-28 17:04:33 来源:WEB开发网   
核心提示:在asp.net 2.0中,可以很方便地加密web.config文件里的敏感信息了.比如如果有权限操作服务器的话,可以用下面的方法加密web.config里的敏感信息,比如要加密数据库连接串aspnet_regiis -pe "connectionStrings" -app "/应用程序的

在asp.net 2.0中,可以很方便地加密web.config文件里的敏感信息了.比如如果有权限操作服务器的话,
可以用下面的方法加密web.config里的敏感信息,比如要加密数据库连接串
aspnet_regiis -pe "connectionStrings" -app "/应用程序的名字"

如果没权限的话,可以在程序里动态实现

Configuration config = Configuration.GetWebConfiguration(Request.applicationPath);
ConfigurationSection section = config.Sections["connectionStrings"];
 section.PRotectSection ("DataProtectionConfigurationProvider");
 config.Update ();

Tags:asp net 加密

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接