Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Where are cookies actually stored on the hard disk?
Where are cookies actually stored on the hard disk?
✍: Guest
This depends on the user's browser and OS.
In the case of Netscape with Windows, all the cookies are stored in a single file called
cookies.txt
c:\Program Files\Netscape\Users\username\cookies.txt
In the case of IE, each cookie is stored in a separate file namely username@website.txt.
C:\Documents and Settings\username\Cookies\username@Website.txt
2008-05-20, 6428👍, 0💬
Popular Posts:
How To Set Background to Transparent or Non-transparent? - CSS Tutorials - HTML Formatting Model: Bl...
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
How To Truncate an Array? - PHP Script Tips - PHP Built-in Functions for Arrays If you want to remov...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...