Submitted by Anonymous (not verified) on Mon, 10/17/2005 - 00:00
Forums

Would I be right in assuming that transactions are not persistent in any session and each time a file is used it should be both opened and closed?

Full name
Administrator

admin

Mon, 10/17/2005 - 14:25

Yes; All transactions made by the HTTP protocol is stateles - however. IceBreak contains a Session Object that corresponds to the actual browser session. So you can put persistant data into this session object by : sessionSetVar('VarName' : 'Value'); or sessionSetVarNum('NummericVarName' : 'NummericValue'); and then retrive the value by: MyProgramVar = sessionGetVar('varname'); or MyNummericeVar = sessionGetVar('NummericVarName');