How to create a new Session Identifier?

Hi. I am going off of the example project “Making a Session Timeout Due to Inactivity”. When the user logs into my app, I am saving some session-specific stuff, one being the Session.Identifier. I noticed if I allow the app to timeout, and I go to log back in, it saves the same Identifier. Is there a way to refresh/reset the Identifier to make a new one if the user times out, goes back to the login screen, and then logs in again?

In the UserTimedOut Event Handler add the code GoToURL("/")

Perfect and simple! Thanks for the help Wayne!