NetTalk Central

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

Title: Two questions
Post 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.


Any help will be much appreciated.

Cheers,
Rene
Title: Re: Two questions
Post by: Bruce on June 08, 2017, 06:07:44 AM
>> 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
Title: Re: Two questions
Post by: Rene Simons on June 09, 2017, 01:55:24 AM
That simple huh  :)
Thanks!