I want to add useridor any value in the redirected URL through Querystring.
How can i do this?
Plz Help me!!!!
Printable View
I want to add useridor any value in the redirected URL through Querystring.
How can i do this?
Plz Help me!!!!
Can you elaborate? I'm not sure if you want to append to the querystring from page1 or page2.
No,i want to append URL using query string like x.aspx?uid=001.
You're just repeating what you said earlier. Like I said, you'll need to elaborate.
response.redirect(x.aspx?uid=001)
response.redirect("x.aspx?uid=001")
and then on the next page...
Dim id as string = request.querystring("uid")