当前位置:asp编程网>技术教程>Asp教程>  正文

当一个页面上有一百个表单

2008-02-28 09:47:37   来源:aspprogram.cn    作者:佚名   浏览量:2328   收藏
当一个页面上有一百个表单项,你是怎么获取上面的值勤的?
这是一段简单的代码,你试试这段代码,试过后,欢迎去贴吧说一下你的想法?
index.asp
<form name="form1" method="post" action="submit.asp">
   用户名:<input type="text" name="username"><br>
密码:<input type="text" name="password"><br>
介绍:<textarea name="content" cols="20" rows="10"><
textarea><br>
性别:<select name="sex">
 <option value="男">男</option>
 <option value="女">女</option>
</select> 
<input type="submit" value="提交" name="submit"> 
<input type="hidden" name="id" value="5">
   </form>

submit.asp
<%
For Each j in request.Form 
   response.write j&#38;"="&#38;request(j)&#38;"<br>"
Next
%>

关于我们-广告合作-联系我们-积分规则-网站地图

Copyright(C)2013-2017版权所属asp编程网