Visual Studio 2003 and Javascript help...

  • Thread starter Thread starter almurph
  • Start date Start date
A

almurph

Hi,


I'm using Visual Studio 2003 to develope a Web-form application. This
application required me to do some Javascripting.
Now my Javascrip is not exactly what you would good - I need lots of
help and explanations etc... High levels of variable transparence
etc.
Because of this, I found the whole deugging routine quite difficult
with VS2003 and Javascript. For example, the intelligent completion
thingy works but does not provide an explanation of the methods etc...
I was wondering is there a plug-in that can enhance VS2003's
Javascript development ability?

Any comments/suggestions/user-experiences much, much appreciated.

Cheers & thanks
Al.
 
Hello (e-mail address removed),

The support of debuggin JS in vs 2003 is weak
You can use:
1) "debugger;" instruction in your JS code to put breakpoint
2) "Firebug" pluging for FireFox with allows you to debug JS

---
WBR, Michael Nemtsev [C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

a> I'm using Visual Studio 2003 to develope a Web-form application. This
a> application required me to do some Javascripting.
a> Now my Javascrip is not exactly what you would good - I need lots
a> of
a> help and explanations etc... High levels of variable transparence
a> etc.
a> Because of this, I found the whole deugging routine quite difficult
a> with VS2003 and Javascript. For example, the intelligent completion
a> thingy works but does not provide an explanation of the methods
a> etc...
a> I was wondering is there a plug-in that can enhance VS2003's
a> Javascript development ability?
 
Hi,

Michael said:
Hello (e-mail address removed),

The support of debuggin JS in vs 2003 is weak
You can use:
1) "debugger;" instruction in your JS code to put breakpoint
2) "Firebug" pluging for FireFox with allows you to debug JS

Actually, debugging support in VS2003 is not that bad. You can attach
the debugger to the IEXPLORE process and enjoy the full JavaScript
debugger. No need for the nasty "debugger" keyword.

For Firefox, better than Firebug you have Venkmanm, which is a full
blown JavaScript debugger.

HTH,
Laurent
 
Back
Top