当前位置:编程学习 > asp >>

取得多表单的值

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

补充:asp教程,ASP入门
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,