帮助我看一下我的Redirct 有什么错误。
<html>
<title>幻灯片网络评分系统</title>
<body bgcolor="#fef4d9">
<%
Dim sSQL
sSQL="select empno from staff_info "
sSQL=sSQL&" where emp_name='"&Request.Form("name")&"'"
sSQL=sSQL&" and emp_idno='"&Request.Form("password")&"'"
Set MyConn=server.CreateObject("ADODB.Connection")
MyConn.Open "LBS","rep02","rep02"
Set RS=MyConn.Execute(sSQL)
if RS.eof then
response.write "&nbsp对不起,用户名或密码有误。<p>&nbsp;请与系统管理员联系!"
end if
if not RS.eof then
Response.redirect("face.asp")
%>
</body>
</html>