You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/content/guide/cookies.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,13 @@ description = "Handling cookie in Echo"
6
6
parent = "guide"
7
7
+++
8
8
9
-
Cookie is a small piece of data sent from a website and stored in the user's web
10
-
browser while the user is browsing. Every time the user loads the website, the browser
11
-
sends the cookie back to the server to notify the user's previous activity.
9
+
Cookie is a small piece of data sent from a website server and stored in the user's web
10
+
browser while browsing. Every time the user loads the website, the browser
11
+
sends the cookies back to the server to notify the server of user's latest activity.
12
12
Cookies were designed to be a reliable mechanism for websites to remember stateful
13
-
information (such as items added in the shopping cart in an online store) or to
14
-
record the user's browsing activity (including clicking particular buttons, logging
15
-
in, or recording which pages were visited in the past). Cookies can also store
16
-
passwords and form content a user has previously entered, such as a credit card
17
-
number or an address.
13
+
information (e.g. items added to the shopping cart in an online store) or to
14
+
record the user's browsing activity (such as clicking particular buttons, logging
15
+
in, or user previously visited pages of the website). Cookies can also store form content a user has previously entered, such as username, gender, age, address, etc.
0 commit comments