急!急!急!asp连接sql的问题
asp 代码如下:<% if request.form("yongh")<>"" and request.form("mim")<>"" then
yongh=request.form("yongh")
mim=request.form("mim")
set cn=server.createobject("adodb.connection")
cn.open"driver={sql server};server=D4;uid=sa;pwd=;database=fzx"
set rs=server.createobject("adodb.recordset")
sql="select * from yongh where name='"&yongh&"'and password='"&mim&"'"
rs.open sql,cn,3,1
if rs.recordcunt=0 then
h_error=1
else
session("www_id")=rs("name")
session("www_pwd")=rs("password")
response.write("欢迎你登录!")
end if
end if
cn.close
%>
<% if h_error=1 then
<script language ="javascript">
alert("请输入的用户/密码错误,请重新输入!");
history.back();
</script>
end if
%>
运行出现右边错误:HTTP 500 - 内部服务器错误 Internet Explorer
无法显示出运行的结果(界面)
望各位大侠帮忙解决!