为什么我的asp程序不执行
我用ie打开结果<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<请填好你的表格
<form action="asp.asp" method="post" name="login">
姓名:<input type="text" name="name" size="10" /><br />
性别:<input type="radio" name="xb" value="nan" />男
<input type="radio" name="xb" value="nv" />女<br />
密码:<input type="password" name="password" size="10" /><br />
<input type="submit" name="sd" value="提交" />
<input type="reset" name="sd" value="重置" />
</body>
</html>
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<%
nm=Trim(Request.Form("name"))
xb=Trim(Request.Form("xb"))
Response.Write nm
if xb="nan" then
Response.Write "男士"
else
Response.Write "女士"
endif
Response.Write ",你好"
%>
</body>
</html>