VS.NET Debugger for JavaScript

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Does anyone know of a way to debug JavaScript for C# .NET
applications?

Is there a tool or add-on that will allow me to step
through Javascript line by line in debug mode?

Thanks

Tom
 
Thanks for the tip Arild Fines.

But when I tried adding the <%@ page Language=jscript
debug=true %> to my Home.aspx page I got ane error.

There can be only one 'page' directive and I can't combine
C# and Jscript directives within the single page directive.

Here is my page directive
<%@ Page language="c#" Codebehind="Home.aspx.cs"
AutoEventWireup="false" Inherits="BOD.Templates.Home" %>

And the JavaScript files are embedded in the page as
include files?

Thanks

Tom
 
Tom said:
Thanks for the tip Arild Fines.

But when I tried adding the <%@ page Language=jscript
debug=true %> to my Home.aspx page I got ane error.

There can be only one 'page' directive and I can't combine
C# and Jscript directives within the single page directive.

Here is my page directive
<%@ Page language="c#" Codebehind="Home.aspx.cs"
AutoEventWireup="false" Inherits="BOD.Templates.Home" %>

And the JavaScript files are embedded in the page as
include files?

I must have misunderstood your original question. You are talking about
_clientside_ Javascript, running in the browser?
 
Back
Top