打开个人空间出现如下错误:
无法显示网页 |
试图访问的网页出现问题,无法显示。 |
请尝试执行下列操作: HTTP 错误 500.100 - 内部服务器错误 - ASP 错误 Internet 信息服务
技术信息(用于支持人员) - 错误类型:
Microsoft VBScript 运行时错误 (0x800A000D) 类型不匹配: 'RS' /life/KS_Cls/KS.BlogCls.asp, 第 142 行
- 浏览器类型:
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1) - 网页:
GET /life/space/space.asp - 时间:
2007年12月24日, 下午 02:02:34 - 详细信息:
Microsoft 支持
|
-----------------------------------------
我按照论坛高手提供的,修改ks_cls/ks.blogcls.asp, 也没有解决!!!!求助!!!!!!!!!!!!!!!!
Function GetEnterpriseContact(username)
Dim RS:Set RS=Server.CreateObject("ADODB.RECORDSET")
RS.Open "Select top 1 * From KS_EnterPrise Where UserName='" & UserName & "'",conn,1,1
IF RS.Eof Then
RS.Close:Set RS=Nothing
GetEnterpriseContact=""
->end if 改为 else
GetEnterpriseContact="联 系 人:" & RS("Contactman") & "<br/>"
GetEnterpriseContact=GetEnterpriseContact & "公司地址:" & RS("address") & "<br>"
GetEnterpriseContact=GetEnterpriseContact & "邮政编码:" & RS("zipcode") & "<br>"
GetEnterpriseContact=GetEnterpriseContact & "联系电话:" & RS("telphone") & "<br>"
GetEnterpriseContact=GetEnterpriseContact & "传真号码:" & RS("fax") & "<br>"
GetEnterpriseContact=GetEnterpriseContact & "公司网址:" & RS("weburl") & "<br>"
RS.Close:Set RS=Nothing
->这里加 End if
End Function
[此贴子已经被作者于2007-12-24 16:13:58编辑过]