摘要: 记录COOKIE HttpCookie username = new HttpCookie("username"); HttpCookie autolog = new HttpCookie("autologon"); username.Value = TextBox1.Text; autolog.Value = CheckBox1.Checked.ToString(); //保存一年 username.Expires = DateTime.Today.AddYears(1); autolog.Expires = DateTime.Today.AddYea 阅读全文
posted @ 2012-11-19 09:08 小林叔叔 阅读(156) 评论(0) 推荐(0)