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 are url fragments?
What are the main advantages of using asp.net?
Mention the execution process for managed code?
What is directive in asp net?
What are the security types in asp.net?
What is parse in asp.net?
Explain what are the advantages of asp.net mvc framework? : asp.net mvc
What is a query string in a url?
Is there any limit for query string? Means what is the maximum size?
How will you load dynamic assembly? How will create assesblies at run time?
What is caching? Explain.
What is the application pool?
What events will occur when a page is loaded?
Can we have a web application running without web.config file?
What is enableviewstate in asp net?