I have tried the following but, the cookie is not expired after the given time. Can you please look into my code
System.Web.HttpCookie currentUserCookie = System.Web.HttpContext.Current.Request.Cookies["Userdata"];
System.Web.HttpContext.Current.Response.Cookies.Remove("Userdata");
currentUserCookie.Expires = DateTime.Now.AddMinutes(10);
Can anyone help me?