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

ASP.NET的票据工具类FormsAuthenticationTicket

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
票据是asp.net登录验证的一种方式,以前研究过,现在并不使用,今天发现了,记录一下。
/*###################票据工具###################
 * 1.设置<authentication mode="Forms"/>
 * 2.票据数据保存在cookie中,Logout就一直处于登录状态。
 ##############################################
*/
using System;
using System.Collections.Generic;
using System.Text;

using System.Web;
using System.Web.Security;

namespace YL.Common
{
    
public class TicketTool
    {
        
/// <summary>
        
/// 创建一个票据,放在cookie中
        
/// 票据中的数据经过加密,解决了cookie的安全问题。
        
/// </summary>
        
/// <param name="username"></param>
        public static void SetCookie(string username, string userData)
        {
            FormsAuthenticationTicket ticket 
= new FormsAuthenticationTicket(1, username, DateTime.Now, DateTime.Now.AddMinutes(60), false, userData, FormsAuthentication.FormsCookiePath);
            
string encTicket = FormsAuthentication.Encrypt(ticket);
            HttpCookie newCookie 
= new HttpCookie(FormsAuthentication.FormsCookieName, encTicket);
            HttpContext.Current.Response.Cookies.Add(newCookie);
        }
        
/// <summary>
        
/// 通过此法判断登录
        
/// </summary>
        
/// <returns>已登录返回true</returns>
        public static bool IsLogin()
        {
            
return HttpContext.Current.User.Identity.IsAuthenticated;
        }
        
/// <summary>
        
/// 退出登录
        
/// </summary>
        public static void Logout()
        {
            FormsAuthentication.SignOut();
        }
        
/// <summary>
        
/// 取得登录用户名
        
/// </summary>
        
/// <returns></returns>
        public static string GetUserName()
        {
            
return HttpContext.Current.User.Identity.Name;
        }
        
/// <summary>
        
/// 取得票据中数据
        
/// </summary>
        
/// <returns></returns>
        public static string GetUserData()
        {
            
return (HttpContext.Current.User.Identity as FormsIdentity).Ticket.UserData;
        }
    }
}
end

鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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