I have created cookie state provider object to store the 'id' in cookie
The cookie variable values are available even after refreshing the page in firefox and crome browser. But the cookies are cleared in IE when i refresh the page.
Here is my code:
cookie = new Ext.state.CookieProvider({
path: "/",
expires: new Date(new Date().getTime()+(1000*60*60*4)), // 4 hours
domain: ""
});
Ext.state.Manager.setProvider(cookie);
Ext.state.Manager.set('abc','20');
Please help me fix this problem for IE
Thanks,
Ambarish