Ho provato a implementare un sistema di login con i cookie, ma il browser non tiene il login, qualcuno sa dove sbaglio?
string uid = Request.Form....
HttpCookie ck = new HttpCookie("ut", uid);
Response.Cookies.Add(ck);
TimeSpan ts = new TimeSpan(365, 0, 0, 0);
ck.Expires.Add(ts);
grazie in anticipo