NetTalk Central

Author Topic: Going directly to a form when passing the GUID from another site  (Read 3898 times)

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
Going directly to a form when passing the GUID from another site
« on: February 03, 2016, 02:12:17 PM »
If I pass a record's GUID as a parameter in the url to my webserver (coming from another site), where do I put the call to the NetWebForm for that record?  I want it to open the form immediately after the website loads in the browser.

Thanks,

Kurt

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
Re: Going directly to a form when passing the GUID from another site
« Reply #1 on: February 04, 2016, 05:53:29 AM »
for the benefit of others, it's in the docs:

http://www.capesoft.com/docs/NetTalk9/NetTalkWebFAQ.htm#W4

Thanks Bruce!

kboller

  • Newbie
  • *
  • Posts: 24
    • View Profile
    • Email
Re: Going directly to a form when passing the GUID from another site
« Reply #2 on: February 08, 2016, 08:15:17 AM »
If you are coming from an external site, to pass the ID of the record you have to format the url as follows:

File Name: SmartStuff, GUID field: SS:GUID

Url formatted as:

http://[your server's address/domain]/[Your Procedure Name]/?change_btn=change&SS__GUID=[actual record GUID]

* note the double underscore between the file prefix and id field name.

Thanks Bruce!