我首先选  新建工程-〉IIS APPLICATION,之后保存工程和DCA,DSR文件,开始运行一切都是采用默认项,我没有写任何代码。但是工程对应的.ASP文件显示时有如下错误:
    错误类型:
  服务器对象, ASP 0178 (0x800A0005)
检查权限时Server.CreateObject 的调用失败。对此对象的访问被拒。
/Project1/WebClass1.ASP, 第 14 行查看.ASP源文件代码就是下面几行:
<%
Server.ScriptTimeout=600
Response.Buffer=True
Response.Expires=0If (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 "Project1.WebClass1", _
Server, _
Application, _
Session, _
Request, _
Response
%>
我用的是VB6标准版+WIN2K的IIS+IE6中文版,请问如何解决该问题,是不是什么地方设置的原因,请高人指点,小弟不胜感激!