Request parameters

  • Thread starter Thread starter mg
  • Start date Start date
M

mg

Is there a way to set key/value pairs in a Request object
in one WebForm (other than by using the URL ... e.g. NOT
WebForm2.aspx?param1="A"&param2="B") and retrieving the
values in the destination WebForm (WebForm2.aspx)
 
Could you give a specific example of what I do in a
calling WebForm1 that enables me to get the parameter
values from a Request object in the called WebForm2

What is the POST approach?
 
post is using a web form

you have a web form with a hidden field that you might
have stored the data.

you post it (click on form) to send it to page 2.

Hope this helps

Redee,
 
Back
Top