InterviewSolution
Saved Bookmarks
| 1. |
What are cookies in ASP.NET? |
|
Answer» Cookie is a small piece of information stored on the client machine. This file is located on client MACHINES "C:\Document and Settings\Currently_Login user\Cookie" path. It is USED to store user preference information LIKE Username, Password, City and PhoneNo ETC. on client machines. We need to import namespace called System.Web.HttpCookie before we use a cookie. |
|