Help needed with form submission

Hi all,

I have a self submitting asp page with server side validation. If the validation fails I'm able to display the appropriate messages and ask the user to fill in the missing details. If the validation passes I redirect to the next page by using

Response.Redirect("nextpage.asp").

But the problem is I'm not able to access any of the form variables in the other page. I'm new to ASP. Please help !

Thanks

Senthil

Comments

  • You will have to pass the values with the querystring like
    Response.Redirect("nextpage.asp?formfileld1=value1&formfileld2=value2").

    Where formfield1 etc are names of your form fields.

    HTH
    Faustine
    --------
    : Hi all,
    :
    : I have a self submitting asp page with server side validation. If the validation fails I'm able to display the appropriate messages and ask the user to fill in the missing details. If the validation passes I redirect to the next page by using
    :
    : Response.Redirect("nextpage.asp").
    :
    : But the problem is I'm not able to access any of the form variables in the other page. I'm new to ASP. Please help !
    :
    : Thanks
    :
    : Senthil
    :

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion