NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Rene Simons on October 25, 2010, 01:10:21 PM

Title: Value queue
Post by: Rene Simons on October 25, 2010, 01:10:21 PM
Hi,

I need to know which vars are in the URL that requested the web page.
In other words, Ihave to read the var names in the Value queue.

Three questions:
1. What is the name of the Value queue?
2. Which fields are in a queue entry?
3. How can I read through the Value queue (Is it just a matter of get(_dataqueue,x#))?

Thanks,
Rene
Title: Re: Value queue
Post by: Bruce on October 25, 2010, 08:31:40 PM
Hi Rene,

1. p_web._LocalDataQueue
2. name (and some other stuff)
but once you have the name use p_web.GetValue to get the value.
3. yes, Get(self._LocalDataQueue,x#)

Cheers
Bruce

Title: Re: Value queue
Post by: Rene Simons on October 25, 2010, 10:33:38 PM
Hi Bruce,

Thanks,

Rene