I have a table with data on my website and I have to enter the data into input controls on another website (which I do not own) on a regular basis. Is there a way to pre-fill these inputs on the external website with data from my website without manually entering it? My website runs on PHP and the other website is written in ASP.
feedback
|
|
Because of the same origin policy, you can't modify an other webpage. If you lucky you can pass some parameters to the page, but only if the page has implemented this:
Or use Bookmarklets Another way is to use a bookmarklet. Basicly you inject javascript into the page, load you content and insert it into the form. | |||
|
feedback
|
|
The only way to "manipulate" a foreign page is within your browser using tools like "Greasemonkey" which is a Firefox Addon. It uses Javascript to edit a page in the browser. It should be possible to fill out a form with it if you hard-code the needed values so it doesn't really fulfill all your needs... | |||
|
feedback
|
|
If the other website is not protected (captchas, CSFR tokens, etc.) you could just create a script php to send post messages using curl inside a loop... but ehem... the other website might not like that and they might consider it as an attack :P.. of course, in this case you wont be using a browser, the info will be sent between servers. Hope this helps | |||
feedback
|