V
VMI
I'm a ASP.Net beginner, so please don't laugh
)
In the button of my initial aspx page, I have this code that sends a URL
with parameters my other page:
url="ZMResult.aspx?Address1=
this.txt_add1.Text + "&Address2=" +
this.txt_add2.Text;
Response.Redirect(url);
What do I do in ZMResult.aspx so that I can read the contents of the URL and
then parse it to get the "Address1" and "Address2" values?
Thanks.

In the button of my initial aspx page, I have this code that sends a URL
with parameters my other page:
url="ZMResult.aspx?Address1=
this.txt_add1.Text + "&Address2=" +
this.txt_add2.Text;
Response.Redirect(url);
What do I do in ZMResult.aspx so that I can read the contents of the URL and
then parse it to get the "Address1" and "Address2" values?
Thanks.