Usage of web.configuration ?
Answers were Sorted based on User's Feedback
Answer / j_baghla
This file is used to configure the application in terms of
session timeout,connection
timeout,authentication,authorization,debugging,tracing etc.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / tiger.net
This is the configuration file for the application, its
common practice for having application level config
settings available for the website.
We can have multiple web.config files for the application.
All the config settings of the application can be managed
and can be encrypted if requirement demands.
We can manage database connection, session settings,
authentication, authorization,...etc
We have machine.config file that can provide the config
settings for the websites, but it is laid per machine,
which is not not a good practice to use it, so in web
applications we can place the web.cnfig file for each
application, which has higher precidence over the
machine.config file.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gayathri
The web.config file contains information that control module loading, security configuration, session state configuration, and application language and compilation settings. Web.config files can also contain application specific items such as database connection strings.
Is This Answer Correct ? | 0 Yes | 0 No |
How can we Validate a Controls in ASP.NET page using JavaScript?
What is dataset ?
18 Answers Infosys, Kuwait University,
What is the exact purpose of http handlers?
Where would you use an IHttpModule, and what are the limitations of anyapproach you might take in implementing one?
What is the difference between debug and release?
What is an application domain?
what is meant by sitemapnode ?
You are planning the deployment of an ASP.NET application. The application uses a Visual Studio .NET component named DataAccess that will be shared with other applications on your Web server. You are using Visual Studio .NET to create a Windows Installer package. You need to deploy DataAccess and the ASP.NET application so that they can be uninstalled later of necessary. What should you do? A . Create a setup project for DataAccess. Add the ASP.NET application in a custom action. B . Create a setup project for the ASP.NET application. Create another setup project for DataAccess. C . Create a Web setup project for the ASP.NET application. Add a project output for DataAccess. D . Create a Web setup project for the ASP.NET application. Add a merge module for DataAccess.
What is the need to give <compilation debug=true> command ?
How do you register JavaScript for webcontrols ?
Define reflection in .net?
What is query string? What are its advantages and limitations?