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
How will you load dynamic assembly? How will create assesblies at run time?
Explain client-side scripting?
What is the default authentication mode for asp.net?
What is the question mark in a url?
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
Define data caching?
What is the postback property in asp.net?
How we can force all the validation controls to run?
Differentiate strong typing and weak typing
How to implement Authentication and Authorization?
Who generates session id?
If you have an application with multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers by using round-robbin load balancing. Explain which is the best approach to maintain login-in state for the users?
Why is mvc better than asp.net?
What is protected configuration?
What is AutoPostback?