Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I was able to debug asp app before updating ie to new version.
I have VS 2010 and updated IE version 10 on windows 7 ultimate.
I am not able to debug any web application by Debug->stepINTO or Stepout or F10, F11.

I want to debug and put break point on each page life cycle event, But When I hit f11, Page render and it is not stopping on any breakpoint.

PLEASE help me I tried all option and searched on net also or provide other solution to get rid if this , Only I want to debug my appliaction.

protected void Page_PreInit(object sender, EventArgs e)
{ Response.Write("Page_PreInit" + "<br/>"); }

protected void Page_Init(object sender, EventArgs e)
{ Response.Write("Page_Init" + "<br/>"); }

protected void Page_InitComplete(object sender, EventArgs e)
{ Response.Write("Page_InitComplete" + "<br/>"); }

protected void Page_PreLoad(object sender, EventArgs e)
{ Response.Write("Page_PreLoad" + "<br/>"); }

protected void Page_LoadComplete(object sender, EventArgs e)
{ Response.Write("Page_LoadComplete" + "<br/>"); }
Posted
Updated 2-Jul-13 0:07am
v2

1 solution

If you want debug locally then
check this[^]

If after deploying on IIS - Go here[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900