The problem here is that a "500 Internel Server Error" is occuring when
accessing the page (I presume localstart.asp). You are then being redirected
to the default HTTP 500 error page, which in turn having problems on line
15.
Line 17 is actually a piece of server-side code:
<%
Set objASPError = Server.GetLastError
%>
so it would be irrelevant whether you where using Firebird (or any other
browser), since server-side code is never seen by the browser. Instead, I
think something is happening (ie an error) in localstart.asp, and you are
being redirected to 500-100.asp and then another error is occuring in
500-100.asp, which is preventing you from getting information about the
initial error.
Is there anything in the Windows Event Logs? (if so, please post the Event
ID, Source and Description). Otherwise, have you tried reinstalling IIS?
Cheers
Ken
[quoted text, click to view] "saif" <unmssa@yahoo.com> wrote in message
news:a7dd32e0.0402142226.2c4a31bb@posting.google.com...
: Hi all,
:
: I'm working with WinXP and IIS 5.1 and I use Mozilla firebird browser.
: When I check localhost I am promted for password but that's not the
: problem. Real problem is I am given this error (after posting me to
: http://localhost/localstart.asp):
:
: ----- Error ------
: HTTP 500.100 - Internal Server Error - ASP error
: Internet Information Services
:
: Technical Information (for support personnel)
:
: * Error Type:
: error '8002801c'
:
: Error accessing the OLE registry.
:
: /iisHelp/common/500-100.asp, line 154
:
:
:
: error '8002801c'
:
: Error accessing the OLE registry.
:
: /iisHelp/common/500-100.asp, line 17
:
: ----- End of Error ------
:
: while other pages which I have created works fine and I would like to
: point out that when I use IE I'm not promted password or given any
: error. It works fine in IE.
:
: I understand there is no error with IIS or ASP but it is VBScript
: which does not work with FIrebird, am I correct. There is no error
: with ASP.NET pages.
:
: Thanks for your replies.