惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - Franky
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
有赞技术团队
有赞技术团队
美团技术团队
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Engineering at Meta
Engineering at Meta
T
Tailwind CSS Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
I
InfoQ
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog

博客园 - boulder

Md5Encode 算法 javascript浮动图片 - boulder - 博客园 导出Excel - boulder - 博客园 获取键盘的enter - boulder - 博客园 oracle 的float(b)转 oracle函数(关于处理小数点位数) char、varchar和varchar2的区别(转) - boulder - 博客园 生成验证码(转) - boulder - 博客园 ASP.NET 2.0利用Httphandler实现URL重写(伪URL及伪静态)(转) .net上传文件的限制 电话号码的验证表达式 GridView 在换页时保持CheckBox的选择 在DataList中找到控件 自定义datatable 没有装Express版Sql Server 2005就不能用WebPart ? (转) form表单 input 通过查询系统表得到纵向的表结构 Codebehind CodeFile转 解决flash的虚框问题
asp.net 利用Cookie实现免登陆(c#) - boulder - 博客园
boulder · 2008-12-04 · via 博客园 - boulder

  前台
  <script language="javascript">
     function ChangeClick(id)
     {
       if(id=="1")
       {
           if( document.getElementById('<%=chbNoExpire.ClientID %>').checked==true)
           {
             document.getElementById('<%=chbNoExpire.ClientID %>').checked=false;
           }
            return false;
       }
       if(id=="2")
       {
         if(document.getElementById('<%=chbExpire.ClientID %>').checked==true)
          {
            document.getElementById('<%=chbExpire.ClientID %>').checked=false;
          }
          return false;
        }
     }
    </script>
 <p> 免登陆时间:<input type="checkbox" id="chbExpire" runat="server" onclick="ChangeClick(1);" />30天<input type="checkbox"
 id="chbNoExpire" runat="server" onclick="ChangeClick(2);" />永久
 </p>

后台:
//在第一次登陆的时候,记录cookie 并加密
protected void btnLogin_Click(object sender, EventArgs e)
{
     DateTime dtExpire = chbExpire.Checked ? DateTime.Now.AddDays(30) : DateTime.Now.AddMonths(600);

     string ip = CommonHelper.GetCurrentIP();
     string userInfo = _userEty[0].ID.ToString() + "|" + ip;
     FormsAuthenticationTicket ticket =
               new FormsAuthenticationTicket(1, "userInfo", DateTime.Now, dtExpire, false, userInfo);
     String cookieStr = FormsAuthentication.Encrypt(ticket);
      // Send the cookie to the client
      Response.Cookies["userInfo"].Value = cookieStr;
      Response.Cookies["userInfo"].Path = "/";
      Response.Cookies["userInfo"].Expires = dtExpire;
}
//退出清空cookie
    protected void btnLoginOut_Click(object sender, EventArgs e)
    {
        Session.Clear();
        HttpCookie cookie = Request.Cookies["userInfo"];
        if (cookie != null)
        {
            cookie.Expires = DateTime.Now.AddDays(-2);
            Response.Cookies.Set(cookie);
        }
        InitTab_BeforeLogin();
        ShowTabBeforeLogin();
    }
//页面加载时:
   protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            //设置cookie
            if (Context.Request.Cookies["userInfo"] != null)
            {
                FormsAuthenticationTicket ticket2 = FormsAuthentication.Decrypt(Context.Request.Cookies["userInfo"].Value);
                //convert the string representation of the role data into a string array
                string[] strInfo = ticket2.UserData.Split(new char[] { '|' });
                string id = strInfo[0].ToString();
                //初始化登陆后的数据
            }
     }