breakpoints with c# and asp

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
 
D

Deming He

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...?
 
B

Brian O'Haire

Thanks for the help. That was the problem. Now working on getting IIS to
cooperate.

Brian O'Haire
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top