views:

346

answers:

3

Hi all,

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

Please help.

+1  A: 

Hi check this url

link text

santosh
A: 

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