NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Rene Simons on June 07, 2017, 03:04:31 AM
-
Hi,
I am creating a net websource procedure.
The procedure is called with a parametervalue that is constructed like calling a webform without a browse, as described in "the book".
Now I have two problems.
- I have a hard time getting hold of the parameter value in that procedure (how do I do that?)
- How do find the real key value that corresponds with the _bdiv_ parameter in the url?
Any help will be much appreciated.
Cheers,
Rene
-
>> I have a hard time getting hold of the parameter value in that procedure (how do I do that?)
p_web.GetValue('whatever')
>> How do find the real key value that corresponds with the _bdiv_ parameter in the url?
you don't use bdiv directly, you go stright to the underlying key fields. for example
p_web.GetSessionValue('cus:id')
Cheers
Bruce
-
That simple huh :)
Thanks!