ssue:
Want a quick sloppy way to do LotusScript equivalent to Print a variable's value in an Xpage / Custom Control object's event code: Server Side Javascript XPage events.
Solution:
Use the following example Server Side JavaScript event code:
var myvar = 'hello';
print(myvar);
or
java.lang.System.out.println('hello');
For the above example, this will make the server console output:
HTTP JVM: hello
previous page
|