top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

For which purpose you use <appSettings> tag?

+1 vote
203 views
For which purpose you use <appSettings> tag?
posted Dec 3, 2014 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

appSettings tag helps us to store the application settings information like connection strings, file paths, URLs, port numbers, custom key value pairs, etc.
Ex:-
Code:

<appSettings>
    <add key="ConString" value="Data Srouce=....."/>

</appSettings>
answer Dec 3, 2014 by Shivaranjini
...