指引网

当前位置: 主页 > 编程开发 > ASP >

取得多表单的值

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:43
[摘要] 指引教程为您提供取得多表单的值等资源,欢迎您收藏本站,我们将为您提供最新的取得多表单的值资源
<script>ec(2);</script>

当一个页面上有一百个表单项,你是怎么获取上面的值勤的?
这是一段简单的代码,你试试这段代码,试过后,欢迎去贴吧说一下你的想法?
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&"="&request(j)&"<br>"
Next
%>

------分隔线----------------------------