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
Do you know about caching with the datasource controls?
What is data reader in asp.net?
Explain the use of fragment caching.
How can we inherit a static variable?
What are the advantages of passport authentication?
Explain what the contents of cookie?
What is break mode?
What are asp.net web forms?
Difference between singleton and singlecall.
What is the difference between session and application?
Explain about solution explorer window?
What are Master Pages in ASP.NET?
How will you maintain versioning in asp.net 2.0?
Describe the diffeerence between inline and code behind?
Why session is necessary in web application?