This is most likely related to your code in your asp page. Copy & paste this into a new file..
-----------------------------------------------
<%@ Language = VBSCRIPT %>
<% Option Explicit %>
<HTML>
<BODY>
<P>An Error has occurred. We appologize for this inconvenience.
<P>
<U>Useful Links:</U><BR>
<LI><A HREF="/">Main Page</A>
<P><HR><P>
<%
'Create an instance of the ASPError object
Dim objASPError
Set objASPError = Server.GetLastError()
%>
<TR>
<TD>ASP Code</TD>
<TD><%=objASPError.ASPCode%></TD>
</TR>
<TR>
<TD>Error Number</TD>
<TD><%=objASPError.Number%></TD>
</TR>
<TR>
<TD>Source Code that caused the error</TD>
<TD><%=objASPError.Source%></TD>
</TR>
<TR>
<TD>Category</TD>
<TD><%=objASPError.Category%></TD>
</TR>
<TR>
<TD>Error Occured in</TD>
<TD><%=objASPError.File%></TD>
</TR>
<TR>
<TD>Line Number</TD>
<TD><%=objASPError.Line%></TD>
</TR>
<TR>
<TD>Column Number</TD>
<TD><%=objASPError.Column%></TD>
</TR>
<TR>
<TD>Description</TD>
<TD><%=objASPError.Description%></TD>
</TR>
<TR>
<TD>Extended Description</TD>
<TD><%=objASPError.ASPDescription%></TD>
</TR>
</TABLE>
</BODY>
</HTML>
-----------------------------------------------
Name the file ErrorHandler.asp then go into IIS.. right click on the website.. click properties.. under the "custom errors" tab.. find "500:100 internal server error" double click on it.. and replace the page in the "URL" box with new "ErrorHandler.asp" page.
Now mimic the error.. you should now get a detailed description of what went wrong. Good Luck.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.