Hi Anthony, This might help: > http://inst.eecs.berkeley.edu/~selfpace/cs9honline/Q2/mutation.html.
That was helpful. As you know I am working on a network application, which is node i.e nodeID driven. When nodeID's change I need a way to reset all variable's stored in session, to use them in conditionals to test if they are False or in order to assign new values to them. session.userNodeID gets assigned an id, session.userNodeName a string and session.userNodeMembership a list, just like the menu and dropdown variables. So I'd better do the following: session.userNodeID=0 session.userNodeName='' session.userNodeMembership=[] session.cmsadmin_menu=[] session.create_dropdown=[] session.retrieve_dropdown=[] Don't I? Kind regards, Annet. --

