Results 1 to 8 of 8

Thread: How to retreive data

  1. #1

    Thread Starter
    Fanatic Member vbPoet's Avatar
    Join Date
    Feb 2005
    Location
    Searching ..
    Posts
    669

    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.

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: How to retreive data

    How are you passing it, in the querystring?

    Request.QueryString("variablename")

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: How to retreive data

    Store it in a var, and then use a select case or if/then/else statement to redirect accordingly.

  4. #4

    Thread Starter
    Fanatic Member vbPoet's Avatar
    Join Date
    Feb 2005
    Location
    Searching ..
    Posts
    669

    Re: How to retreive data

    Quote 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.

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: How to retreive data

    Pass it in the querystring.

  6. #6

    Thread Starter
    Fanatic Member vbPoet's Avatar
    Join Date
    Feb 2005
    Location
    Searching ..
    Posts
    669

    Re: How to retreive data

    I didn't understand
    How ...?
    plz demonstrate if possible..

  7. #7
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    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.

  8. #8

    Thread Starter
    Fanatic Member vbPoet's Avatar
    Join Date
    Feb 2005
    Location
    Searching ..
    Posts
    669

    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
  •  



Click Here to Expand Forum to Full Width