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()
%>
<CENTER>
<TABLE BORDER=1 CELLSPACING=1>
<TR>
<TH COLSPAN=2>Detailed Error Information</TH>
</TR>
<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.
Hope this helps.
T
![[afro] [afro] [afro]](/data/assets/smilies/afro.gif)
![[gorgeous] [gorgeous] [gorgeous]](/data/assets/smilies/gorgeous.gif)
![[afro2] [afro2] [afro2]](/data/assets/smilies/afro2.gif)