http 500.100 internal server error

Dumzaz

Active Member
Joined
Jul 23, 2007
Messages
38
Reaction score
0
When ruinning an application on localhost (IIS), it gives an error
http 500.100 asp internal server error.

iqsonline/login.asp line 13

IIS is running fime on its own. Any ideas what could be wrong here?
 
It's not so much an IIS error, rather an error with your code. Whatever you are doing on line 13 is failing and throwing an error.

Knowing IIS, it's probably a permissions problem.

Check line 13 to see what it's doing and let us know.
 
This is the code in the login.asp
Am clueless when it comes to ASP, and the code was written by someone else, I just support the entire app. It looks as though the line is trying to login to a web class runtime, but am not sure.
<%
Response.Buffer=True
Response.Expires=0
Response.Expires = -1
Response.AddHeader "Pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"

If (VarType(Application("~WC~WebClassManager")) = 0) Then
Application.Lock
If (VarType(Application("~WC~WebClassManager")) = 0) Then
Set Application("~WC~WebClassManager") = Server.CreateObject("WebClassRuntime.WebClassManager")
End If
Application.UnLock
End If

Application("~WC~WebClassManager").ProcessNoStateWebClass "IQSOnline.Login", _
Server, _
Application, _
Session, _
Request, _
Response
%>
 
Bingo! I have intentionally left a space there on another machine and it gave the same error. I removed the space and it worked again. Thank you.

I still have to check on the user's side and see if this is the issue on that machine. I wonder what woud have put the sapce there.

Will let you know. thanks.
 
When ruinning an application on localhost (IIS), it gives an error
http 500.100 asp internal server error.

iqsonline/login.asp line 13

IIS is running fime on its own. Any ideas what could be wrong here?

Lib quotes v2/v3?

Usually see this error when the security and access permissions for IIS on that specific folder isn't set right
 
Top
Sign up to the MyBroadband newsletter
X