How to debug server-side JScript code

I need to maintain a classic ASP project where requires debugging server-side JScript code.For example, consider an A.aspx file with the following code:\[code\]<% @Page Language="JScript" aspcompat="true" %><%var a = 1;var b = a + a;...// Other statements hereResponse.Write(b);%>\[/code\]In visual studio, I cannot put any breakpoint on any server-side jscript lines or blocks,e.g. put a breakpoint on line 'var b = a + a';However, it's okay for client-side javascript code deubgging.It becomes a big pain for me to debug such codes.I want to know how to debug server-side jscript code or has any tools support such features?Thanks.
 
Back
Top