NoCoolHandle
Programmer
I am not sure how to ask this question, but in the old days of asp, if I wanted to bring up a page from the current one, and pass it variables, I could pick post or get. “Get” sending the parameters back as a querystring, “post” in the form collection.
“Form” being kind of private, where as “querystring” having all your parameters publicly viewable in the url.
In Aspx, we tend to post back to the same form.... (but a server side form, not a client side one) and then redirect to a new aspx page based on user input.
What I need to do, is to take a series of variables with the request to the new web page for processing, but not display them in the browser... Any suggestions as to an approach??
Thanks in advance.
Rob
PS I don't want to use the response.redirect abc.aspx?value=x type syntax if at all possible.
“Form” being kind of private, where as “querystring” having all your parameters publicly viewable in the url.
In Aspx, we tend to post back to the same form.... (but a server side form, not a client side one) and then redirect to a new aspx page based on user input.
What I need to do, is to take a series of variables with the request to the new web page for processing, but not display them in the browser... Any suggestions as to an approach??
Thanks in advance.
Rob
PS I don't want to use the response.redirect abc.aspx?value=x type syntax if at all possible.