What is AppSetting Section in "Web.Config" file?
Web.config file describe the configuration for a webproject. By Using "AppSetting" section we can define user defined values. The example below defined is "ConnectionString" part which will be used through out the project for database connection.
d key="ConnectionString" value="server=xyz;pwd=www;database=testing" />