我要做一个简单的能实现表单提交的asp程序,只要填上表单的东西能显示就可以了
看看我哪里出错了a.asp中是这样的
html>
<head>
<title>欢迎访问</title>
</head>
<body bgcolor="#00FF00">
<p>欢迎访问</p>
<form method="POST" action="b.asp">
<p><input type="text" name="T1" size="20"><input type="submit" value="提交" name="B1"><input type="reset" value="全部重写" name="B2"></p>
</form></body></html>
b.asp是这样的<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 2</title>
</head>
<body bgcolor="#00FF00">
<%dim T1
T1: request.form("T1")
response.write T1&结果%>
<p>结果</p>
</body>
</html>
求指正错误谢谢