|
-
May 6th, 2005, 03:49 PM
#1
Thread Starter
Fanatic Member
How to retreive data
I have problem like that
page1 is sending some variable data to page2 Now page2 have to decide whether it has to redirect it to page10,page20 or page30 which are pages of different websites basing on the value of a variable1 which is in page1 variable data.
I want know how i can access variable data of page1 in page10,page20 or page30
*** Remember these page10,page20 and page30 are pages of different domains.
Last edited by vbPoet; May 10th, 2005 at 04:49 AM.
-
May 7th, 2005, 01:49 AM
#2
Re: How to retreive data
How are you passing it, in the querystring?
Request.QueryString("variablename")
-
May 7th, 2005, 01:51 AM
#3
Re: How to retreive data
Store it in a var, and then use a select case or if/then/else statement to redirect accordingly.
-
May 7th, 2005, 04:20 AM
#4
Thread Starter
Fanatic Member
Re: How to retreive data
 Originally Posted by mendhak
Store it in a var, and then use a select case or if/then/else statement to redirect accordingly.
Sorry Mehndak if you read last lines of my post #1 then u will come to know
that i m asking about
I want know how i can access variable data of page1 in page10,page20 or page30.
Here page10,page20 and page30 are redirected pages from page2 where page1 is sending data.
Plz Read my first post.
Thank You.
-
May 7th, 2005, 06:06 AM
#5
Re: How to retreive data
Pass it in the querystring.
-
May 7th, 2005, 06:38 AM
#6
Thread Starter
Fanatic Member
Re: How to retreive data
I didn't understand
How ...?
plz demonstrate if possible..
-
May 8th, 2005, 11:44 PM
#7
Re: How to retreive data
Response.Redirect("pagename.asp?variablename=" & somevalue)
I thought you'd know this, since you're passing a value from page1 to page2 in the first place.
-
May 10th, 2005, 04:46 AM
#8
Thread Starter
Fanatic Member
Re: How to retreive data
mehnda its ok...
But if u read my thread u will come to know
i want to get variable data of page1 in page10,page20 or page30 which are pages of different websites....
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
|