www.evidhyashala.com provides free free mock test , free online exam , online exam free test series , online exam free , Online Test Exam Series , free exam papers past papers , online exam form ,Online Test Series for Exam Prep. Free Mock Tests - for All govt jobs. Bank PO, Clerk, SSC CGL, CHSL, JE, GATE, Insurance, Railways, IBPS RRB, SBI, RBI, IPPB, BSNL TTA

Sponser Link

know more info pls click here

Dot Net Interview Questions-How do you enable tracing in on an ASP.NET page?

To enable tracing on an ASP.NET page we need to put the ‘trace’ attribute to true on the page attribute as shown in figure ‘Tracing in Action’ ( Its numbered as 1 in the figure). In the behind code we can use the trace object to put tracing like one we have shown on the page load numbered as (4). We have used the ‘trace.write’ to display our tracing. You can also see the trace data which is circled. 2 and 3 show the actual data. You can see how trace shows in details the tracing information for a page with events and time period for execution. If you make the ‘trace’ as false you will only see the actual display i.e. ‘This is the actual data’. So you can enable and disable trace with out actually compiling and uploading new DLL’s on production environment.

The above sample enables tracing only at page level. To enable tracing on application level we need to modify the ‘web.config’ file and put the ‘trace’ tag with ‘enabled=true’.
<trace enabled="true" requestLimit="10" pageOutput="false" localOnly="true" />

0 comments:

Popular Posts