Hello:
I am trying to grab a value that comes from a JavaScript in the embed point of the WebHandler called SessionValueSetFromBrowser. At the momment, so far so good, i grab the value when is set in the script. The problem i am having is, every time i access a page (NetTalk Procedure), that part is called multiple times. There is a way to make sure that, this embed is called just one time when the procedure is called or better yet, let the server know that i already have what i want after a specifi stage?
I am trying to set a variable (check example below) and if the value is 0, to not execute that part of the code, but alas, it passes anyways.
Any suggestions?
Thanks in advance
IF p_web.GSV('yadayada') = 0 <-- this is set from another procedure
some code (this parte is supposed to pass just when the value is 0)
END!