这段代码哪里出了问题呀,求大神指点
<%@language=VBscript%><html>
<head>
<title>Request取得表单值</title>
</head>
<body><form action=""method=post id=form1 name=form1>
<table width="75%"border="1" align="center">
<tr><td colspan=2 align=middle>用户注册</td></tr>
<tr><td>用户ID</td>
<td><input id=text1 name="userid"></td></tr>
<tr><td>用户名</td>
<td><input id=text2 name="username"></td></tr>
<tr><td>用户密码</td>
<td><input id=text3 name="password"></td></tr>
<tr><td>性别</td>
<td><input type="radio" id=radio1 name="gender" value=男>男<input
type="radio" id=radio2 name="gender" value=女>女</td></tr>
<tr><td>Email</td>
<td><input id=text4 name="email"></td></tr>
<tr><td>QQ</td>
<td><input id=text5 name="QQ"></td></tr>
<tr><td colspan=2 align=middle>
<input id=submit1 type=submit value="提交" name=submit1></td></tr>
</table></form>
<%
if requst.form("userid")<>""then
response..write("你输入的信息如下:<br>")
response..write("用户ID"+request.form("userid")+"<br>")
response..write("用户名"+request.form("username")+"<br>")
response..write("用户密码"+request.form("password")+"<br>")
response..write("性别"+request.form("gender")+"<br>")
response..write("Email"+request.form("email")+"<br>")
response..write("QQ"+request.form("QQ")+"<br>")
esle
response..write("请输入注册信息!!!<br>")
end if%>
</body></html>
注册表提交后不会显示注册信息
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.