ASP.NET has 3 classes which allow you to work with Cookies.
HttpCookie: provides a way to create and manipulate individual HTTP cookies. HttpResponse: The Cookies property allows to create and save cookies on client machines. HttpRequest: The Cookies property allows access to cookies from the client maintains. How to create a Cookie ?It is really easy to create a cookie in ASP.NET. You can use the Response object in ASP.NET to create cookies as key-value pairs. Response.Cookies("UserName").Valu...
No comments yet, be the first one to post comment.