breakpoints with c# and asp

  • Thread starter Thread starter Brian O'Haire
  • Start date Start date
B

Brian O'Haire

Hi

I am trying to write an asp application using c#. If I create a console
application with my code, I have no trouble setting break point in my code
and using the debugging features.
However when I put the same code into an asp.net web page, the break
points are ignored. The trace tells me I executed these statements, however
I do not get to stop the code and examine variables.

<compilation

defaultLanguage="c#"

debug="true"

/>

is included in web.config

I am using Microsoft Visual C# .NET 69462-335-0000007-18355 and Net
framework 1.1.

Thanks for any suggestions.

Brian O'Haire
 
Brian O'Haire said:
Hi

I am trying to write an asp application using c#. If I create a console
application with my code, I have no trouble setting break point in my code
and using the debugging features.
However when I put the same code into an asp.net web page, the break
points are ignored. The trace tells me I executed these statements, however
I do not get to stop the code and examine variables.

<compilation

defaultLanguage="c#"

debug="true"

/>

is included in web.config

I am using Microsoft Visual C# .NET 69462-335-0000007-18355 and Net
framework 1.1.

Thanks for any suggestions.

Brian O'Haire
Have you enabled the checkbox for ASP.NET debugging under
Project/Properties...?
 
Thanks for the help. That was the problem. Now working on getting IIS to
cooperate.

Brian O'Haire
 
Back
Top