How to encrypt Connectionstring written in web.config from codebehind?

筅森魡賤 提交于 2019-12-23 02:01:37

问题


I need to encrypt connectionstring and some appsettings keys value in web.config from code behind.

Please help.


回答1:


Check these url - use aspnet_regiis.exe http://msdn.microsoft.com/en-us/library/zhhddkxy.aspx

http://msdn.microsoft.com/en-us/library/system.configuration.sectioninformation.protectsection.aspx




回答2:


try this

private void ProtectSection(string sectionName,
                                   string provider)
    {
        Configuration config =
            WebConfigurationManager.
                OpenWebConfiguration(Request.ApplicationPath);

        ConfigurationSection section =
                     config.GetSection(sectionName);

        if (section != null &&
                  !section.SectionInformation.IsProtected)
        {
            section.SectionInformation.ProtectSection(provider);
            config.Save();
        }
    }


来源:https://stackoverflow.com/questions/1593923/how-to-encrypt-connectionstring-written-in-web-config-from-codebehind

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!