NetTalk Central

Author Topic: Posting Data from another web page  (Read 1948 times)

TimR

  • Newbie
  • *
  • Posts: 28
    • View Profile
Posting Data from another web page
« on: December 10, 2008, 10:44:21 AM »
I've a client that is trying to post some information from their web site into my Web app.  I can see the data that they are posting, however none of it appears on my webpage when it opens.  Is there something special I have to do have so that their web page will prefill in data?
« Last Edit: December 10, 2008, 02:09:24 PM by TimR »

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11179
    • View Profile
Re: Posting Data from another web page
« Reply #1 on: December 10, 2008, 09:42:50 PM »
Hi Tim,

yes.
Their stuff is being passed as "values" - whereas your form is primed from "session values" - so what you need to do is "store" the value in the session value. ie

p_web.StoreValue('whatever')

You can do this at the top of the GenerateForm routine in your form.

Cheers
Bruce