Details on web.config and global.asax - just explain what
are the sections will be there.



Details on web.config and global.asax - just explain what are the sections will be there...

Answer / 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

More ASP.NET Interview Questions

How to limit table cell size with long strings?

1 Answers   IBS,


How will you load dynamic assembly?

1 Answers  


What are client activated objects?

1 Answers  


What are client activated objects and server activated objects?

1 Answers  


Can the unique key be null?

1 Answers  


accessing a textbox that was created dynamically? for (int i = 0; i < t1; i++) { TextBox t2 = new TextBox(); t2.ID = "adf" + i; PlaceHolder1.Controls.Add(t2); } accessing data entered in the above created controls.

1 Answers  


What are the asp.net list controls and difference between them?

1 Answers  


What is the other method, other than GET and POST, in ASP.NET?

3 Answers  


how many databases and tables are uses in one project?

2 Answers  


What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?

8 Answers   Siebel Systems,


What is an axd file?

1 Answers  


What is the advantage of using Windows authentication in a Web application?

1 Answers   MCN Solutions,


Categories