Transfering data from outside source

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Transfering data from outside source

    Not sure if this is the right forum for this but, I have a client that wants
    his groups data to transfer over from his site on to hidden fields on our order
    forms.

    to explain the senario a bit better: his people will log in to a page on his
    site that has a link to our order form. He wants their user information to pass
    over to our order form without the person having to re-enter their user info.

    what would be the best way to accomplish this ?

    I tried looking to see if some other post might have been made on this
    subject, but didn't know what to search for other than "transfering data" and
    when I did that I didn't get any results.

    I hope this makes sense

    Ratchez Guest

  2. Similar Questions and Discussions

    1. XML Data Source
      I am thinking of creating an online application using an XML file as it's primary data source. The XML file on the web server will be refreshed via...
    2. moving data from one data source to another
      I'm trying to move data from one data source to another. I don't want to loop - because it will kill performance. A simple Select into or Insert...
    3. Transfering data from website to ???????
      I need to be able to get files from the user?s computer. The might be somewhat large so I am not sure what the best way to do this. The files will...
    4. Transfering data from one DB server to another DB server using ASP
      If you are talking about SQL Server, use DTS package to transfer data. It is really elegant that way. You could invoke the package from ASP pages....
    5. about data source???
      I have an access database developed. I have added a new table to link to the original developed table. Then I want to change my original form and...
  3. #2

    Default Re: Transfering data from outside source

    > what would be the best way to accomplish this ?

    An easy way would be for his system to append a querystring to the URL that
    goes to your form:

    [url]www.yoursite.com/yourform.php?userid=bobsmith[/url]

    Then, grab that information and put it in the form.

    That said, if any of this is secure information, then this won't work. Ie,
    if something could go wrong if someone manually changed the above to
    'johndoe' then this is obviously not a good solution.

    -Darrel


    darrel Guest

  4. #3

    Default Re: Transfering data from outside source

    Thanks Darrel,

    yes it would be secured info.
    Ratchez Guest

  5. #4

    Default Re: Transfering data from outside source

    > yes it would be secured info.

    Then you're going to have to set up a system where the servers talk to each
    other directly via a secured connection. You want to exclude the browser
    from this transation completely.

    -Darrel


    darrel Guest

  6. #5

    Default Re: Transfering data from outside source

    Thanks again Darrel
    Ratchez Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139