• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

pre-populating pages

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it possible to link to a site and prepopulate fields on their home page without passing parameters.
Our website is linking to a business partner's website and would like to pass information to their home page and prepopulate certain fields.
They cannot allocate resource to amend their site to accept parameters.
I don't think that it is possible but have been asked to investigate
 
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Without hooks on their site to enable this you are indeed out of luck.
 
Ranch Hand
Posts: 245
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The only way I can think of to do this involves a good amount of work. You would have to have a very good understanding of the content on their site and "re-present" it. Basically a back end process would read their site, parse it, and then show the content to the browser with the fields pre-populated.

This isn't pretty and even slight changes to your partners site could cause problems, depending on the complexity of the site and the data involved.

Depending on the business relationship, perhaps you can host your own page and submit the form to your partner. That way you control all of the GUI and you and your partner only have to agree on the parameters in the form.
 
Bear Bibeault
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Depending on the business relationship, perhaps you can host your own page and submit the form to your partner.



This is what I've had to do in the past when the partner was unwilling to commit any time to the partnership. (That's some "partner" that can't devote the 30 minutes or so it would take to put the necessary hooks into a page to allow pre-populating of the fields).
 
Bear Bibeault
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That also assumes that partner's app security is faulty, allowing forms to be submitted from sites other than their own. But I'd be willing to bet that they haven't devoted much time to that either.
[ October 07, 2004: Message edited by: Bear Bibeault ]
 
Yeah. What he said. Totally. Wait. What? Sorry, I was looking at this tiny ad:
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic