|
it
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to store a class in a cookie and retrieve?I have the following script <%@LANGUAGE=Javascript%> <% var myClass = new LoginInfo(); myClass.sessionID = "1321312131"; Response.Cookies("testingCookies") = myClass; var recievedCookies = new LoginInfo(); recievedCookies = LoginInfo(Response.Cookies("testingCookies")); Response.Write(recievedCookies.sessionID); Response.End(); function LoginInfo() {var sessionID;} %> How to make it work? Cheers <yoota***@gmail.com> wrote in message
Show quoteHide quote news:1174526149.581642.155250@p15g2000hsd.googlegroups.com... You need to enable your object to serialise and deserialise the state of the> Hi, > I have the following script > <%@LANGUAGE=Javascript%> > <% > var myClass = new LoginInfo(); > myClass.sessionID = "1321312131"; > > Response.Cookies("testingCookies") = myClass; > > var recievedCookies = new LoginInfo(); > recievedCookies = LoginInfo(Response.Cookies("testingCookies")); > > Response.Write(recievedCookies.sessionID); > Response.End(); > > function LoginInfo() > {var sessionID;} > %> > > How to make it work? > > Cheers > object to a string. For example (by no means a complete implementation and is air code). :- function LoginInfo(vsStateIn) { var moState = vsStateIn ? eval(vsStateIn) : {} vsStateIn = null this.getSessionID = function() { return moState.sessionID; } this.putSessionID = function(value) { moState.sessionID = value; } this.serialise = function() { var sState = '{' for (var key in moState) { if (sState.length > 1) sState += ', ' if (typeof(moState[key]) == 'string') sState += key + ": '" + moState[key].replace(/([\\|\'])/g, '\\$1') + "'" else sState += key + ": " + moState[key].toString() } sState += '}' return sState } } To store the object:- var oLogin = new LoginInfo() oLogin.putSessionID("1321312131") Response.Cookies("testingCookies") = oLogin.serialise() ; To retrieve the object:- var oLogin = new LoginInfo(Request.Cookies("testingCookies").Item) if (oLogin.getSessionID == "1321312131") { //is logged on } For further Ideas google JSON
HOWTO Make CStr for JavaScript on ASP w/ Request.Form and QueryStr
more than 1 per row? multiple image submit buttons in one form PRB JavaScript in ASP with Request.Form generate xml without need to persist it in a file? why I need to click refresh button in order to see session values will I burn in hell for using all VARCHAR(MAX)? Error reading xml document in Asp SQL statement using two tables ASP input and EXCEL |
|||||||||||||||||||||||