i have the following method to write cookies
this will save cookies untill 12/25/9999 but..this page is Login.aspx..will Main.aspx benefit from this same cookie too?Code:Response.Cookies["WebLog"]["User"] = nickTxt.Text;
Response.Cookies["WebLog"]["Pw"] = pwTxt.Text;
Response.Cookies["WebLog"].Expires = new DateTime(9999, 12, 25);
