home *** CD-ROM | disk | FTP | other *** search
- <%@ LANGUAGE="VBSCRIPT" %>
- <%
- Set oDump = Server.CreateObject("Debug.Dump")
- Application("test")="Sting"
- Session("test")="a second test"
- oDump.DebugLevel=3
- oDump.Request
- oDump.Application
- oDump.Session
- oDump.Trace("-Starting Content-")
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-
- <html>
- <head>
- <title>Debug Sample</title>
- </head>
-
- <body>
- <pre>
- ASP Debug Dll v1.0
- 19/07/99
-
- Author:
- Carsten Zeumer
- Mail:
- <a href="mailto:debug@href.net">debug@href.net</a>
-
- purpose:
- Dumps object data and strings to a debugger (get the best
- DebugMessage tracer at http://www.sysinternals.com).
-
-
- Installation:
- regsvr32 debug.dll
-
- Objects:
- Debug.Dump
- Properties:
- DebugLevel (0-3)
-
- Methods:
- Application Dumps the Application-Object to the debuger
- Session Dumps the Session-Object to the debuger
- Request Dumps the Request-Object to the debuger
- Response Dumps the Response-Object to the debuger
- Trace(STRING) Dumps the given STRING to the debugger
-
- Usage:
- see attachet file DEBUG.ASP
-
- Legal stuf:
- none..
- don't blame me if it does not work,
- but mail me if it helps you...
-
- </pre>
- </body>
- </html>
- <%
- oDump.Trace("-Content Done-")
- oDump.Response
- Set oDump=Nothing
- %>
-