When web.config is called ?
Answers were Sorted based on User's Feedback
Answer / asra
Web.config is an xml configuration file. It is never
directly called unless we need to retrieve a configurations
setting.
Is This Answer Correct ? | 10 Yes | 3 No |
Answer / hema
1. web.config is never really called. But whenever the
application starts/restarts, values from web.config are
reloaded into memory.
2. Any changes (even of just a simple spacing) to
web.config restarts the application. So your session will
be lost.
Is This Answer Correct ? | 10 Yes | 4 No |
Answer / natu
Basically Web. Config is an XML based text file, It can't called directly. We can use this to retrieve the Database through settings done in Web.config file by using <appsettings> -- </appsettingd>
Is This Answer Correct ? | 3 Yes | 2 No |
Answer / cpp
hello friend's
this is really nice question .
Ans :
Web.config file is a Configuration file it first not a call
but load in memory when your web application or website is
load into a memory.
all settings for websites are in WEB.CONFIG file.
Is This Answer Correct ? | 1 Yes | 0 No |
What are cookies in asp.net?
How to reduce the Page size in asp.net?
WSDL means?
What is difference between mvc and asp.net? : Asp.Net MVC
What parameters can you pass in the url of the api?
How to manage different kinds of sessions in ASP.NET?
Difference between abstract factory pattern and factory method pattern in .NET with example.
3 Answers ACS, IBM, Keane India Ltd,
can we pass coditions in swtich case?
What is session management in web application?
What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What is WCF? Pls Explain clearly with exmple.