What Is Cookies And Why We Use Cookies In Asp.Net??
Cookies
Collapse
X
-
Tags: None
-
A cookie is a small bit of text that accompanies requests and pages as they go between the Web server and browser. The cookie contains information the Web application can read whenever the user visits the site.
Cookies provide a means in Web applications to store user-specific information. For example, when a user visits your site, you can use cookies to store user preferences or other information. When the user visits your Web site another time, the application can retrieve the information it stored earlier. -
Cookies are small pieces of data that are sent by a web server to a browser, and stored on the user's computer. Cookies can be used by websites to track the activities of users, and improve their performance. Cookies also make it possible for websites to remember user preferences, such as the language or country that the user is in. Cookies are used by many websites, including Asp.Net.Comment
Comment