Table of Content
HAL Forum
function string GetSessionString (
string Variable)
Description:
Retrieves a variable value for current web visitor session.
Parameters:
Variable Name of the variable
global
procedure SessionAddToArray(string name,string text)
begin
  Integer cnt;
  
  cnt = StringToInt(GetSessionString(name & "cnt"));
  PutSessionString(name & cnt,text);
  cnt = cnt + 1;
  PutSessionString(name & "cnt",cnt);
  
  return;
end;
Related topics:
««