Can I debug Javascript

  • Thread starter Thread starter Andrew Chalk
  • Start date Start date
A

Andrew Chalk

My ASP.NET v.1.1 application generates some Javascript that isn't working (I
see "Error on Page" when a custom control is clicked). How can I debug this?

Many thanks.
 
Andrew said:
My ASP.NET v.1.1 application generates some Javascript that isn't working (I
see "Error on Page" when a custom control is clicked). How can I debug this?

Many thanks.

Try using the Venkman JavaScript Debugger from Mozilla which can be used
as a plugin within Firefox:

http://www.mozilla.org/projects/venkman/

Hope that works well enough for you.
 
Andrew said:
My ASP.NET v.1.1 application generates some Javascript that isn't
working (I see "Error on Page" when a custom control is clicked). How
can I debug this?

If you're using VS, you can easily debug client script.

http://msdn.microsoft.com/library/d...ebug/html/vxtskdebuggingclient-sidescript.asp

--
Jim Cheshire
================================
Blog: http://blogs.msdn.com/jamesche

Latest entry:
Getting the PID and TID of a COM Call

Describes how to get the PID of the
dllhost process a COM call is executing
in and how to locate the thread as well.
 
Back
Top