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 web beacons used for?
What is state management techniques in asp.net?
Describe the difference between inline and code behind - which is best in a?
What is asp.net and its advantages?
What kind of data can be stored in viewstate?
What is the difference between session and viewstate?
Describe Segmentation With Paging?
What are the various types of validation controls provided by asp.net?
Difference between overriding and overloading?
what cut off mark for po's,what questions they asked for interview?
When we use cookie less session? Explain its working?
What is the use of HttpHandlers? When to use this?
What is a web farm?
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
What are client activated objects?