hi there
I have two web pages designed with ASP.net on VB
I want to send parameter from the first to the second when I open it
and I have this code in the first page :
Response.Redirect("second.aspx? name=" & usernametxt.Text())
and then in the second page_load
stdnamelbl.Text = Request.QueryString("name")
as I suppose this must work, right? but it does not it takes me to the second page but does not show the content in the label (stdnamelbl) although the name=....... appeared in the address bar of the explorer
your help is appreciated a lot
thanks