TMS Core Web Application and settings store

We recommend to use TLocalStorage that is defined in the unit WEBLib.Storage

var
  ALocalStorage: TLocalStorage;

 ALocalStorage := TLocalStorage.Create;
ALocalStorage.Values['key'] := 'yourvalue';
ALocalStorage.Free;