asp.net2.0如何加密数据库联接字符串 在asp.net2.0中,发布网站时,加密web.config,这样可以有效保证数据库用户和密码安全,其步骤如下: 1.添加密钥 执行:c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pc "hnlaw" -exp 其中"hnlaw"为密钥名称 2.添加web.config节点 在web.config的之间添加: 注意:这里keycontainername="hnlaw"和name="hnlaw"分别表示你的密钥名称; 3.加密web.config 到网站根目录添加一个批处理文件enweb.bat,内容如下: @echo off c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pef "system.web/identity" "e:\hs studio\donet2\hnlawyer" -prov "hnlaw" c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pef "connectionstrings" "e:\hs studio\donet2\hnlawyer" -prov "hnlaw" pause 注册上面的的路径和名称! 运行后出现成功! 4.解密 同样到网站根目录添加一个批处理文件deweb.bat,内容如下: @echo off c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pef "system.web/identity" "e:\hs studio\donet2\hnlawyer" c:\windows\microsoft.net\framework\v2.0.50727\aspnet_regiis -pdf "connectionstrings" "e:\hs studio\donet2\hnlawyer" pause 最后就是要注意:做完后找到c:\documents and settings\all users\application data\microsoft\crypto\rsa\machinekeys目录下,找到生成 的密钥文件(可按时间查找),给上network service可读取权限,不然会出现error message from the provider: the rsa key container could not be opened. 无法读取 这样可能会出现,如果没有自己的服务器,没有权限修改machinekeys目录
Posted on 2006-11-13 19:40  李通通  阅读(213)  评论(0编辑  收藏  举报