Re: Passing value from page to page

Tech-Archive recommends: Fix windows errors by optimizing your registry

From: viktor (serguienkov_at_hotmail.com)
Date: 12/07/04


Date: Tue, 7 Dec 2004 14:43:56 -0600

thanks works fine
"Adrienne Boswell" <arbpen2003@sbcglobal.net> wrote in message
news:Xns95B85F2DB9CE0arbpen2003sbcglobaln@64.164.98.6...
> Gazing into my crystal ball I observed "viktor"
> <serguienkov@hotmail.com> writing in
> news:OfFI9zH3EHA.1124@tk2msftngp13.phx.gbl:
>
>> Hi ,
>> I have a small problem.How can I pass value from form thru a few
>> pages. I try with hidden field but my second page just validate and
>> redirect to other one and when I use Request.Form("field") it's
>> nothing coming back. Any help please.
>> thanks
>>
>>
>>
>
> You can use hidden input, but make sure that you always pass the
> information on. If you are doing a response.redirect, then you have to
> include the information in a querystring, and use request.querystring to
> retrieve the values.
>
> For example:
>
> <%
> 'This passes everything in the request.form collection to a querystring.
> Redirect = "redirect.asp?"
> For ix = 1 to Request.Form.Count
> field = Request.Form.Key(ix)
> InputValue = Request.Form.Item(ix)
> redirect = redirect & field & "=" & inputvalue & "&amp;"
> Next
> response.redirect redirect
> %>
>
> If it's a small amount of data, you could probably use the session object,
> but, if the user is not accepting cookies, you're SOL.
> --
> Adrienne Boswell
> Please respond to the Group so others can share


Quantcast