Online Home
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