• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

asp.net利用Cookie实现免登陆(c#)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

  前台
  <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"
  />永久
 </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();
                //初始化登陆后的数据
            }
     }


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
c#使用selenium截图,操作dom元素发布时间:2022-07-18
下一篇:
c#实现用SQL池(多线程),定时批量执行SQL语句发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap