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
Which authentication uses a combination of windows and iis authentication?
To redirect the user to another page which method do we use without performing a round trip to the client?
What is the difference between GridView and Repeater controls in ASP.NET?
What are the differnt types of handler in ASP.NET?
Is asp.net core faster?
Mention few asp.net validators.
Why the javascript validation not run on the asp.net button but run successfully on the html button?
Explain client side state management system.
What is application Object?
What is the use of worker process in asp.net?
What is protected configuration?
Give some salient points of difference between request processor and request dispatcher.
Define what is razor? : asp.net mvc
To bind columns manually which tags do you need to add within the asp:datagrid ?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?