[求助]不匹配: '[string: ""]'
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%response.buffer=true%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
dim count
count=request.cookies("visit.count")
if count>0 then
count=count+1
response.write("您是第"&count&"次访问本网站")
else
count=1
response.write("欢迎你首次访问本网站")
end if
response.cookies("visit.count")=count
response.flush
%>
</body>
</html>
错误类型:
Microsoft VBScript 运行时错误 (0x800A000D)
类型不匹配: '[string: ""]'
/Untitled-2.asp, 第 13 行
请各大哥帮帮忙!谢谢!!