Cookies in ASP
A cookie is a small piece of information that a server can store in a Web browser.
Each time the browser requests a page from the server it sends the relevant cookies too.
ASP allows you to create and retrieve cookies easily.
Creating a Cookie
Cookies are created using Response.Cookies.
Cookies are sent in the headers of the response so you should always set cookies before sending the body of th...