Passing Variables
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How do I pass variables between aspx pages? Example with CGI http://www.dotcom.com/thepage.cgi?plugin=0&affiliate=marryweather&randval=213510766 So, how do I pass variables in a similar fashion?
-
How do I pass variables between aspx pages? Example with CGI http://www.dotcom.com/thepage.cgi?plugin=0&affiliate=marryweather&randval=213510766 So, how do I pass variables in a similar fashion?
Hi Do this Response.Redirect("mypage.aspx?id1=val1&id2=val2"); On the page mypage.aspx u can retrieve these values as follows Request["id1"]; Request["id2"]; shashank