cookie issue
-
hi all i have a strange issue,my site save cookies when someone visit site and click on a specific button, it was working fine on IE6 and IE7, now it works fine on IE7 but not IE6, dont know what the issue is not exception is raised as well, but still cookie is not saved when i view on cookies folders,is that need some thing with user privilages or anything else dont know what is missing i have checked the privacy settings but still now working in IE6 even i have set on level to accept all cookies
Regards. Tasleem Arif
-
hi all i have a strange issue,my site save cookies when someone visit site and click on a specific button, it was working fine on IE6 and IE7, now it works fine on IE7 but not IE6, dont know what the issue is not exception is raised as well, but still cookie is not saved when i view on cookies folders,is that need some thing with user privilages or anything else dont know what is missing i have checked the privacy settings but still now working in IE6 even i have set on level to accept all cookies
Regards. Tasleem Arif
_tasleem wrote:
cookie is not saved when i view on cookies folders
Did the Request.Cookies collection in the same website show up your cookies? I believe, session cookies might not appear in the folder. Isn't it?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
_tasleem wrote:
cookie is not saved when i view on cookies folders
Did the Request.Cookies collection in the same website show up your cookies? I believe, session cookies might not appear in the folder. Isn't it?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinsoncan u explain in detail. this cookie is generated in some system in IE7 and on some systems it is not generated. here is the code of that
HttpCookie aCookie = new HttpCookie("SCID"); aCookie.Values[strCVal] = strCVal; aCookie.Expires = DateTime.Now.AddMinutes(5); Response.Cookies.Add(aCookie);
Regards. Tasleem Arif
-
can u explain in detail. this cookie is generated in some system in IE7 and on some systems it is not generated. here is the code of that
HttpCookie aCookie = new HttpCookie("SCID"); aCookie.Values[strCVal] = strCVal; aCookie.Expires = DateTime.Now.AddMinutes(5); Response.Cookies.Add(aCookie);
Regards. Tasleem Arif
-
_tasleem wrote:
cookie folder
In that case, you might be dealing with persistent cookies. Are you setting the Expires and Path attributes properly?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson