You won't be able to run LotusScript code from a button over the Web as you can in a Notes client. Generally speaking, you can code your submit button in one of two ways:
- Enabled the "" database option and then se the @Command([FileSave]) formula language command followed by the @Command([FileCloseWindow]) command.
- Use JavaScript in the onClick event of the button to submit the form Something like:
document.forms[0].submit();
This was first published in April 2002