I am not the sharpest JS coder in the world and so I need some help.
I have a classic asp file that I need to debug but I can't get any messages to display. How is the best way to debug if I don't have a project that I can run through the VS2008 debugger?
Here is the gist of my code:
Why won't the "alert" work? The screen goes blank when it is reached.Code:<%@Language="JSCRIPT"%> <% if(Request("action") == "clone") { sSQL = "aksp_Floorplan_InsertCloneOfFloorPlan '" + dspLayoutName + "', " + Request("FloorID") + ", '" + Request("cloneof") + "', " + Request("OLDFloorID") alert('help'); //akdataConn.Execute(sSQL); } %> <html> <head> <title>Floorplan Manager</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body style="background-image: none; background-color: White" class="floormgr" bgcolor="#FFFFFF" text="#000000"> <form name="formFloorPlan" method="POST"> <input type="hidden" name="action" value="" /> </form> </body> </html>
Thanks.


Reply With Quote
Bookmarks