Friday, December 23, 2022

AppSettings ASP.NET C# Web.Config

 Add key in asspsettings in web.config and use it in C#


web.config


<configuration>

<appSettings>

    <add key="RetirementAge" value="62"/>

  </appSettings>

</configuration>


--------------

aspx.cs

WebConfigurationManager.AppSettings["RetirementAge"]


No comments:

Post a Comment