Need help debugging aspx at the server.

  • Thread starter Thread starter intrader
  • Start date Start date
I

intrader

I have the trouble debugging at the server with Visual Studio 2003. I have
the development environment running and I choose Tools/Debug Processes and
I attach to apsnet_wp.exe, click on Break - it tells me 'Unable to break in
the process apsnet_wp.exe. The process does not contain any programs'.
When I set a breakpoint in the aspx.cs file (the code behind), it does not
stop there.

Please help!
 
Is your configuration at the top in something other than Debug? If it
is in debug, you should be able to set a break point and hit Run and it
should stop. Make sure the code where the break point is at is getting
executed, of course.

-Darrin
 
Darrin said:
Is your configuration at the top in something other than Debug? If it
is in debug, you should be able to set a break point and hit Run and it
should stop. Make sure the code where the break point is at is getting
executed, of course.

-Darrin
Got it,
Thanks
 
Back
Top