Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Ratchez #1
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
-
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... -
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... -
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... -
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.... -
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... -
darrel #2
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
-
Ratchez #3
Re: Transfering data from outside source
Thanks Darrel,
yes it would be secured info.
Ratchez Guest
-
darrel #4
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
-



Reply With Quote

