To continue reading for free, register below or login
To read more you must become a member of SearchDomino.com
');
// -->

If you create a hidden field on your form, you can easily assign the value of a JavaScript value into it with code like this:
document.forms[0]
.x.value = myJsVar
Now that the JavaScript variable is in a form field, you can get it into a LotusScript variable by the uidoc.FieldGetText method, like this:
LSVar = uidoc.FieldGetText("x")
where x is the name of the hidden field, and LSVar is the name of a LotusScript variable (dim LSVar as String).
|