mayamanako
Technical User
Hello guys,
I have a page called page1.aspx with dynamic "id" on its url, how can I pass this id paramater to page2.aspx? I tried putting Request.QueryString("id") but is not working.
Public Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Response.Redirect("page2.aspx?id="&Request.QueryString("id"))
...
Thanks for any inputs.
I have a page called page1.aspx with dynamic "id" on its url, how can I pass this id paramater to page2.aspx? I tried putting Request.QueryString("id") but is not working.
Public Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Response.Redirect("page2.aspx?id="&Request.QueryString("id"))
...
Thanks for any inputs.