Hi,
In my application i create a cookie using javascript using a function like this.
[CODE=javascript]function setCookie(c_nam e,value,expired ays)
{
var exdate=new Date();
exdate.setDate( exdate.getDate( )+expiredays);
document.cookie =c_name+ "=" +escape(value)
+((expiredays== null) ? "" : ";expires="
+exdate.toGMTSt ring());
//alert ("date=" + exdate.toGMTStr ing());
}
[/CODE]
The problem is i can't find it on the machine (Vista ie7). Cookies created using asp scripts show under the temporary internet files but seemingly not those created using javascript.
Can anyone tell me where they are stored pls...
Thanks
In my application i create a cookie using javascript using a function like this.
[CODE=javascript]function setCookie(c_nam e,value,expired ays)
{
var exdate=new Date();
exdate.setDate( exdate.getDate( )+expiredays);
document.cookie =c_name+ "=" +escape(value)
+((expiredays== null) ? "" : ";expires="
+exdate.toGMTSt ring());
//alert ("date=" + exdate.toGMTStr ing());
}
[/CODE]
The problem is i can't find it on the machine (Vista ie7). Cookies created using asp scripts show under the temporary internet files but seemingly not those created using javascript.
Can anyone tell me where they are stored pls...
Thanks
Comment