NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: TimR on December 10, 2008, 10:44:21 AM

Title: Posting Data from another web page
Post by: TimR 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?
Title: Re: Posting Data from another web page
Post by: Bruce 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