I want to initialize a few session variables in the global.asa file. Below is my code - when I try to print the "Index" variable in my asp page, there is no value. Can someone please let me know where I have gone wrong?<br><br><br>Global.asa:<br><br><SCRIPT LANGUAGE=VBScript RUNAT=Server><br><br>Sub Session_OnStart()<br> Session("Number" = ""<br> Session("PictureID" = ""<br> Session("Index" = 1<br> Session("number" = ""<br>end sub<br><br></SCRIPT><br><br><br>ASP page: this is how I called the variable:<br><br>Index = Session("Index"<br>response.write Index<br><br><br>Thanks<br><br>