asp.net mvc - Loosing Session and cookies in IE for MVC -
my application working fine in chrome. in ie9 loosing session , cookies. token
created in current session but not able retrieve ie (chrome works fine).
if (httpcontext.current.request.cookies["token"] != null) { var memberidencrypted = httpcontext.current.request.cookies["token"].value; var auth = new customauthentication(); memberid = auth.decrypttoken(memberidencrypted); }
Comments
Post a Comment