get value from url
-
i can send a value to other form with this code: Response.Redirect("~/Default2.aspx?Mode=" + TextBox1.Text); but i can not get it in default2.aspx. can any body help me?
You should get values in the second Page This Technique is called passing value in QueryString Make sure that TextBox1.Text is havinf somw value in 2 page use request object to get the value this.Request.QueryString["Mode"] It will return its value
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... " Check My Blog
-
i can send a value to other form with this code: Response.Redirect("~/Default2.aspx?Mode=" + TextBox1.Text); but i can not get it in default2.aspx. can any body help me?