Version 1 of Persistent Data Storage, including states

Updated 2006-01-31 23:59:37

To make any variable persistent throughout your application:

  • after you are logged in, you have a session going
  • on any page you can do:
    tk::session::setAttribute -name HOME -value "/home" 
  • and to access it from any other page you do:
      set home [tk::session::getAttribute -name HOME] 

Take a look at "Login.tcl" file

now that's simple


EKB That does sound cool. But what is it in reference to? Where is "Login.tcl"?