|
-
May 10th, 2005, 05:49 AM
#1
Thread Starter
Lively Member
How to get querystring value on other page
I want to add useridor any value in the redirected URL through Querystring.
How can i do this?
Plz Help me!!!!
-
May 10th, 2005, 08:25 PM
#2
Re: How to get querystring value on other page
Can you elaborate? I'm not sure if you want to append to the querystring from page1 or page2.
-
May 10th, 2005, 11:59 PM
#3
Thread Starter
Lively Member
Re: How to get querystring value on other page
No,i want to append URL using query string like x.aspx?uid=001.
-
May 11th, 2005, 11:08 AM
#4
Re: How to get querystring value on other page
You're just repeating what you said earlier. Like I said, you'll need to elaborate.
-
May 12th, 2005, 01:09 PM
#5
Junior Member
Re: How to get querystring value on other page
response.redirect(x.aspx?uid=001)
-
May 12th, 2005, 02:56 PM
#6
Addicted Member
Re: How to get querystring value on other page
response.redirect("x.aspx?uid=001")
and then on the next page...
Dim id as string = request.querystring("uid")
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|