How to enable Debugging option in APS.Net

rohan550i

New Member
When i was working, I accidently disabled the ASP.Net Debugging option, I want to know How to Re-Enable the debugging option.<BR>Rigth-Click the Project Properties and click the Configuration Properties.<BR>Click the Debugging in the menu available in the List and check the ASP.NET DebuggingYou can enable it in web.config or in the page.<BR><%@ Page Language="vb" Strict="True" Explicit="True" Debug="True" %>in the standard toolbar there's a drop down menu with options Release and Debug. Change that to Debug (change to Release before a final compilation). Alternatively you can go to the Build menu and select Configuation Manger and change that to Debug.
 
Back
Top