<% 'This illustrates how a session variable can be set and accessed. DIM usrName Response.Write "Your Session ID is: " & Session.SessionID Session("UserName") = "Tom Adamson" usrName = Session("UserName") Response.Write " The user name is: " & usrName %>