ASP/JScript cookies...?
-
I wrote a small utility JScript cookie helper class thats posted here on CP. I'm using it in the development of my own site but I am also using ASP. This is where the problem comes in...My cookie object stop working properlynow that i'm using ASP... Do client/server cookies clash...? Should I always use ASP for cookie managment...? Thanx! "An expert is someone who has made all the mistakes in his or her field" - Niels Bohr
-
I wrote a small utility JScript cookie helper class thats posted here on CP. I'm using it in the development of my own site but I am also using ASP. This is where the problem comes in...My cookie object stop working properlynow that i'm using ASP... Do client/server cookies clash...? Should I always use ASP for cookie managment...? Thanx! "An expert is someone who has made all the mistakes in his or her field" - Niels Bohr
It depends on the context that you are trying to use the cookies to store information. I'm guessing you are having problems viewing cookie information (in ASP) that you created/modified on the client browser? Software Developer
-
I wrote a small utility JScript cookie helper class thats posted here on CP. I'm using it in the development of my own site but I am also using ASP. This is where the problem comes in...My cookie object stop working properlynow that i'm using ASP... Do client/server cookies clash...? Should I always use ASP for cookie managment...? Thanx! "An expert is someone who has made all the mistakes in his or her field" - Niels Bohr
Hmm, Cookies, cookies and more cookies. In WinWorld ALL cookies created with InternetSetCookie / InternetGetCookie API's. ( except of may be Netscrape). IIS/ASP sends cookies to the browser. Browser/webbrowserCtrl creates permanent cookies. Temporary cookies never written to HD. InternetSetCookie takes URL. This is were it could falls appart. http://127.0.0.1 could be different from http://your.com.pu.ter To verify that your permanet cookies are working Just call InternetGetCookie. For example: bRet = InternetGetCookie("http://www.yahoo.com", NULL, sCookieVal, 10240) Brian