查看: 1066|回复: 6
|
[询问]html如何post data去multiple asp page,帮我看下
[复制链接]
|
|
<form action="signin_handler.asp" action="prentconference.asp" method="post" target="main" >
我这样写好象不行, 我是想把data 同时post去两个地方,asp做得到吗? 比如我输入username和password, 当我按"submit"按钮后,资料就会输送到prentconference.asp和signin_handler.asp |
|
|
|
|
|
|
|
发表于 5-5-2006 07:19 PM
|
显示全部楼层
我还是第一次看到别人这样写..
要先
action="signin_handler.asp"..
然后在signin_handler.asp里 redirect 到 prentconference.asp |
|
|
|
|
|
|
|
楼主 |
发表于 5-5-2006 10:33 PM
|
显示全部楼层
我也是这样想, 可是要怎样redirect呢? 又要create多一个submit按钮吗?? 有什么办法可以不需要按submit按钮让data自动post吗 |
|
|
|
|
|
|
|
发表于 5-5-2006 11:32 PM
|
显示全部楼层
这是基本呀..
<%
response.redirect("prentconference.asp")
%> |
|
|
|
|
|
|
|
楼主 |
发表于 7-5-2006 12:51 PM
|
显示全部楼层
|
|
|
|
|
|
|
楼主 |
发表于 7-5-2006 01:14 PM
|
显示全部楼层
忘了问response.redirect只是让internet explorer转去指定的asp或html, 转过去后asp要怎样接受data呢?
之前我用submit button的话用这句(a=request.form ("TxtAbcdefg")就可以接收post过来的data, 如果我用response.redirect要怎样接收呢? |
|
|
|
|
|
|
|
发表于 7-5-2006 01:47 PM
|
显示全部楼层
<%
Dim x_value, y_value
x_value = "xxx"
y_value = "yyy"
response.redirect("prentconference.asp?x=" & x_value & "&y=" & y_value)
%> |
|
|
|
|
|
|
| |
本周最热论坛帖子
|