洪继元是谁的女婿:请帮我检查一下我这程序的错误!运行不了!

来源:百度文库 编辑:神马品牌网 时间:2024/04/29 20:56:43
<html>
<head>
<title>ddd</title>
</head>
<body>
<p>请填写你的爱好</p>
<form method="POST" action="form.asp">
<p>
<input type="text" name="hobby" size="20"><br>
<input type="checkbox" name="hobby" value="足球">足球
<input type="checkbox" name="hobby" value="乒乓球">乒乓球</p>
<p>
<input type="submit" value="发送" name="B1">
<input type="reset" value="重填" name="B2"></p>
</form>
<%
For EachiIn Request.Form("hobby")
Response.Writei&"<BR>"
Next
%>
</body>
</html>
得具体点!,把整个列出来,

<%
For Each i In Request.Form("hobby")
Response.Write i&"<BR>"
Next
%>
I 前后+空格

替换为:
<%
For Each i In Request.Form("hobby")
Response.Write i &"<BR>"
Next
%>