日期:2014-05-16 浏览次数:20984 次
Microsoft VBScript 编译器错误 '800a0409'
未结束的字符串常量
\index.asp, line 14
<%@Language="vbscript" Codepage="65001"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>添加留言</title>
</head>
<body style="width:100px; height:100px;">
<script language="javascript" type="text/javascript">
setTimeout("javascript:location.href='index.asp'", 500);
</script>
<%
dim submitString
submitString = Request.Form("Submit")
if (submitString = "发表留言") Then
dim comment,nowTime
nowTime=now()
comment = Request.Form("comment")
if( comment <> "") Then
response.Write(nowTime)
response.Write(comment)
end if
end if
%>
</body>
</html>