Details on web.config and global.asax - just explain what
are the sections will be there.
Answer Posted / alb.shah
1 Use the appSettings part of the Web.Config to store
connection strings.
2 Customer errors can be handled be turned off but I prefer
them to be turned on as below.
<customErrors mode="Off" />
3 Application Tracing can be set up while shows the output
times and all sorts of info of every page if you set it the
values to true below. Local only would mean only onthe
webserver hosting the site. You can also do per page
tracing so that you can turn off application Tracing and
have trace="true" at the top of a single page.
<trace enabled="true" requestLimit="10" pageOutput="true"
traceMode="SortByTime"
localOnly="true"/>
4
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is the parent class of all web server control?
Can a .net web application consume java web service?
What is application variable in asp.net?
What is boxing and unboxing in asp.net?
How many types of cookies are there in asp.net?
How to count the number of objects present in a web page? How to count the number of radio buttons in a web page?
Can I tap into other windows livetm services?
How do I open an ashx file in windows 7?
What is the difference between session.abandon() vs clear()?
How may clustered index we can create in table?
Is asp.net mvc front end or backend? : Asp.Net MVC
What is rending process in ASP.NET?
What is the basic difference between asp and asp.net?
Please briefly explain the usage of global.asax?
Explain the difference between Repeater and Data list control in ASP.NET?