I'm building my first mobile site (like the dumbed down facebook mobile version). Thing is, session variables only last for a page. After that they seem to be reset. How do I set the Application to store session variables for the site so that a mobile will remember them for longer than a refresh? Here's the beginnings of my Application.cfm file.
<cfapplication name="mySiteMobile" clientmanagement="Yes"
sessionmanagement="Yes"
sessiontimeout="#CreateTimeSpan(0,8,0,0)#"
applicationtimeout="#CreateTimeSpan(0,24,0,0)#">
<cfapplication name="mySiteMobile" clientmanagement="Yes"
sessionmanagement="Yes"
sessiontimeout="#CreateTimeSpan(0,8,0,0)#"
applicationtimeout="#CreateTimeSpan(0,24,0,0)#">