NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Rene Simons on June 28, 2017, 07:07:08 AM

Title: Parameters for static pages
Post by: Rene Simons on June 28, 2017, 07:07:08 AM
Hi,

I have a static page with <!-- Net:  thingies.
Is it possible to add parameters to the URL of the static page and use these when "calling" procedure in the nettalk-app?

Rene
Title: Re: Parameters for static pages
Post by: Niels Larsen on June 28, 2017, 10:37:33 PM
Easy

www.domain.com?id=1234&id2=5678

p_web.GetValue('id') - return '1234'
p_web.GetValue('id2') - return '5678'

/Niels
Title: Re: Parameters for static pages
Post by: Rene Simons on June 28, 2017, 11:58:01 PM
Hi Niels,

Thanks

Rene