<% For Each i In Request.Form("hobby") Response.Write i (&"<BR>"&) Next %> 提示语句未结束,在线等

2025年03月19日 15:10
有1个网友回答
网友(1):

应该这样写:
<%
For Each i In Request.Form("hobby")
Response.Write i&"
"
Next
%>