How to write AppSetting key value in Web.Config file?

 Posted by vishalneeraj-24503 on 5/6/2014 | Category: ASP.NET Interview questions | Views: 2003 | Points: 40
Answer:

We will write Appsetting related keys inside configuration tag as below:-
<configuration>     

<appSettings>
<add key = "File_Path" value="/File" />
</appSettings>
</configuration>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response