G
grzybek
Hi,
I've done form in my .aspx page on the client side
and I want to using metod "post" get some variables
in next page .aspx using Request.QueryString["name"],
but it doesn't work.
Is it possible to do on the client side?
I only invented on the server side using :
Response.Redirect("page1.aspx?var=" +
System.Web.HttpUtility.UrlEncode(TextBox1.Text));
in Button_click function,
and then Request.QueryString works in page1.aspx file!
How can Ido it in other way ?
Thanks in advance.
Regards,
grzybek
I've done form in my .aspx page on the client side
and I want to using metod "post" get some variables
in next page .aspx using Request.QueryString["name"],
but it doesn't work.
Is it possible to do on the client side?
I only invented on the server side using :
Response.Redirect("page1.aspx?var=" +
System.Web.HttpUtility.UrlEncode(TextBox1.Text));
in Button_click function,
and then Request.QueryString works in page1.aspx file!
How can Ido it in other way ?
Thanks in advance.
Regards,
grzybek