|
I've recently aquirred ownership of a website that was build as an IIS Application within VB6.
This website is developed and maintained within Windows NT.
I've been asked to look into the possibility of moving development of this website to a XP build machine.
There appears to be some issues in running the web classes in debug mode and I can't seem to support this website in this environment.
If I create a simple IIS Application - New Project --> IIS Application and try to run this application I get the following error (which si the same error I'm getting with my website) -
HTTP 500.100 - Internal Server Error - ASP error
Error Type:
Server object, ASP 0177 (0x800A01F3)
Invalid class string
/Project1/WebClass1.ASP, line 14
Where the asp page created is -
<%
Server.ScriptTimeout=600
Response.Buffer=True
Response.Expires=0
If (VarType(Application("~WC~WebClassManager")) = 0) Then
Application.Lock
If (VarType(Application("~WC~WebClassManager")) = 0) Then
Set Application("~WC~WebClassManager") = Server.CreateObject("WebClassRuntime.WebClassManag er")
End If
Application.UnLock
End If
Application("~WC~WebClassManager").ProcessNoStateW ebClass "Project1.WebClass1", _
Server, _
Application, _
Session, _
Request, _
Response
%>
Does anyone out there know if there is a way of running VB6 IIS Applications in XP?
Is there a way of running a VB6 application without debugging. I'm a .NET developer and know you have 2 options when running your program in .NET - with or without debugging. Is there a similar way in VB6?
|