簡體   English   中英

如何從代碼背后加密在web.config中編寫的Connectionstring?

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

我需要從后面的代碼中加密web.config中的connectionstring和一些appsettings鍵值。

請幫忙。

嘗試這個

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();
        }
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM