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
%>