#12004/8/31 17:15:29
                            
                                请教关于ASP的问题
< html>   
< head>
< title>< /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 Each i In Request.Form("hobby")   Response.Write i & "< BR>"   Next %>   
< /body>< /html> 
我把<后面的空格去掉,应该在页面显示name="hobby"的表格元素里的值撒,为什么发送后看不到呢?
Response.Write i & "< BR>"  
是否正确?
望大虾指教 于ASP的问题