Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Do I debug my website?

Status
Not open for further replies.

Patros

Programmer
May 23, 2002
14
IE
Basically I have asp, php, html, xml, xsl. Does anyone know how I can debug the site as my data is getting lost along the way and need to find out where...
Thanks in advance,
Patros
 
Patros:

The only thing I can tell you is to use the following:

Server Side:

response.write the date elements

Client Side:

Pass the server side to the client (e.g. var thename = &quot;<%=thename%>&quot;; alert(thename);


Hope this helps,
Patrick
 
You could try writing some details out to a text file. i.e.

<%
strFileName = &quot;c:\inetpub\Set fs = CreateObject(&quot;Scripting.FileSystemObject&quot;)
Set objLog = fs.OpenTextFile(strFileName, 8)
strLog = date & &quot; &quot; & time
objLog.WriteLine strLog
objLog.Close
set fs = nothing
set objLog = nothing
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top