Aspx with JavaScript Debugging

  • Thread starter Thread starter Landi
  • Start date Start date
L

Landi

Hi group,
I am wondering if anyone knows how to debug client side java script in an
aspx page with Visual Studio .NET. Is this possible? I remember reading
about this a few months ago but now I can't find it anymore. The article had
said that you can even do step in and step out functionality.
If anyone knows how to do this or has a link I would greatly appreciate it.

Thanks in advance.
Landi
 
Yes, it is possible. But you have to attach to the iexplorer process running
your page, instead of aspnet_wp. aspnet_wp let's you do the server side
debugging.
 
Marina, Thanks for your reply.
I tried to do that and it wouldn't catch the break point. Any suggestions?

--Landi
 
I have sometime seent it be not too reliable about actually stopping at
breakpoints. Sometime I have to resort to putting a 'debugger' statement in
there, which cause IE to pop up the 'do you wan to debug' message, and then
i chose VS.NET 2003 as the debugger I want to use.
 
Back
Top