Coockies are used for tracking data settings. These cookies can be stored in a text file on the user's file system or in-memory of the user browser session.
Example:
HttpCookie nameCookie= new HttpCookie("Name");
nameCookie.Value = TxtName.Text;
Response.Cookies.Add(nameCookie);