How to hit a breakpoint in classic ASP script running in Visual Studio 2015? -
i trying debug classic asp application (written in vbscript) using visual studio 2015.
the page throwing error structured follows :
<% : : class myfile : : 899 someobj.open ssql, connect : : %>
the page throws error @ line above.
com error number : -2147217900 (0x80040e14) file name : /includes/myfile.class.asp line number : 899 brief description : invalid column name 'column'.
but cannot debug this. tried following
- putting "stop" before line -> not work. not stop !
- debug breakpoint not hit -> tried running within visual studio
- debug breakpoint not hit -> tried running page separately , attaching vs debugger iisexpress.
any suggestions ? inline script debugging (this not within javascript) supported @ ?
select site in iis management tool, doubleclick "asp" in main window. set "send errors browser" true, enable client-side , server-side debugging well.
if have visual studio installed, , add "stop" instruction anywhere in vbscript code, should able select visual studio debugger.