Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Post to multiple Pages

Status
Not open for further replies.

ejg

Programmer
Aug 17, 2001
19
US
Does anyone know if it is possible to post results to multiple asp pages.

For instance post from parameter page x to processing pages y and z.

for instance

<form action=&quot;WHEREASMBSMO.asp&quot; method=&quot;post&quot; name=&quot;eventform&quot;>
<form action=&quot;WHEREASMB14.asp&quot; method=&quot;post&quot; name=&quot;eventform&quot;>

all within a single asp page.

So I want whereasmbsmo.asp page to process the results from
the parameter page as well as whereasmb14.asp to process the results from the page.

any help would be appreciated.

thanks.
ejg
 
nope - as far as I know you can't do that. You could do something clever if you had aspHTTP or equivalent on the server, perhaps.
Other than that, I'd suggest having one page that does all possible instances of processing, and have a hidden param on the page to specify which processing to do. . .
bet that makes no sense . . ah well, it is monday after all.
 
Or you can get all the info, put it in session variables, do first page processing, then use the session variables on the second page. Regards

Big Bad Dave

davidbyng@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top