| |
ebgreen
Posts: 4613
Score: 31
Joined: 7/12/2005
Status: offline
|
Debug.Print is a VB construct and is not available in VBScript. Instead you have three common options: 1) If you are running pure VBScript and not usin IIS for ASP, then use WScript.Echo to write to STDOUT. 2) In an ASP page, use Response.Write to write information to the page. 3) Use the FileSystemObject to open a text stream and write information out ot a text file.
_____________________________
"... when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick Goog places to start:http://www.visualbasicscript.com/m_24727/tm.htm http://www.visualbasicscript.com/m_47117/tm.htm
|
|