views:

45

answers:

2

I have tried attaching the debugger to the IIS worker process and have a break point on the asp page. But it never hits the breakpoint.

I am able to debug the aspx pages in the same site using the above process.

A: 

Try to use this function to enter your code for sure, then see if your break point working.

Debug.Assert(false);

if this command not opens a dialog, to enter your debugger, just restart your IIS Admin service that restart also the www service. Also uncheck or check the HTTP keep-alives on web propeties and see with witch of the two is working.

Aristos
A: 

I have got it working by setting

IIS Manager => Site => ASP => Debugging Properties => Enable Server Side Debugging

to True.

Amitabh