Multiple choice technology web technology

You have been asked to debug a Web-based ASP.NET application. For some reason, the debugging information is not presented. What could be missing?

  1. <%@ Page Debug="true" %>

  2. <%@ Application Debug="true" %>

  3. <%@ Page Trace="true" %>

  4. <%@ Application Trace="true" %>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

To enable compilation of debugging symbols and present detailed debugging information in ASP.NET pages, the Debug="true" attribute must be set in the page directive (&lt;%@ Page Debug="true" %&gt;). Setting Trace to true enables execution tracing, but does not compile debug symbols.