主题:  关于一个页面多个表单的接受的问题!

红卫兵

职务:普通成员
等级:1
金币:0.0
发贴:113
#12004/4/13 17:04:38
在一个页面内有多个<form>如:
<form name="form1" method="post" action="1.asp">
<input type="text" name="name">
</form>

<form name="form2" action="1.asp">
<input type="text" name="sex">
<input type="submit">
</form>

那么在1.asp的页面内该怎样接收呢?
是直接用:request.form("name")和response.form("sex")吗?
我试过他们可是老不成功!



绿茶

职务:普通成员
等级:8
金币:10.0
发贴:19267
#22004/4/13 17:15:47
为什么要用两个呢?而且你要一起取得其值,何不放在同一表单?
如果你实在要用两个表单,而且都是指向同一文件接收并两个值都要接收,那就这样用用看了:
<form name="form1" method="post" action="1.asp">
<input type="text" name="name">
</form>

<form name="form2" action="1.asp" onsubmit="document.form2.name.value=document.form1.name.value;">
<input type="text" name="sex">
<input type="hidden" name="name">
<input type="submit">


接收用request.form()方法



红卫兵

职务:普通成员
等级:1
金币:0.0
发贴:113
#32004/4/13 17:21:12
先行谢了!