Question:You want to identify which event in the webpage life cycle takes the longest time to execute. How can you accomplish this?
A Turn on ASP.NET tracing and run the website. After that, review the trace results.
B To each of the life-cycle events, add a line of code that will print the current time.
C In the Web.config file, add the monitorTimings attribute and set it to true.
D In the website properties, turn on the performance monitor and run the website. After that, open the performance monitor to see the timings.
+ AnswerA
+ Report