CSharp examples for System.Web:Cookie
Get Cookie by name
using System.Web; using System;/*from w w w . ja v a 2 s. c om*/ public class Main{ public static HttpCookie Get(string name) { return HttpContext.Current.Request.Cookies[name]; } }