Answer Posted / tanuj kumar
Web.config file is the configuration file for the Asp.net web application. There is one web.config file for one asp.net application which configures
the particular application. Web.config file is written in XML with specific tags having specific meanings.It includes databa which includes
connections,Session States,Error Handling,Security etc.
For example :
< configuration >
< appSettings >
< add key="ConnectionString"
value="server=localhost;uid=sa;pwd=;database=MyDB" / >
< /appSettings >
< /configuration >
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between session and viewstate?
Disable browser cache for entire ASP.NET website?
What describes a query?
Explain the reason why the javascript validation not run on the asp.net button but run successfully on the html button?
Can we have multiple master pages in asp net?
How you can add an event handler?
Explain About WebService
What are the two types of web pages?
Give an example of what might be best suited to place in the application_start and session_start subroutines?
What is cas?
What is the difference between a page theme and a global theme?
What is _viewstart?
Define static constructor?
What do you mean by serialize and marshalbyref?
What is asp.net caching?