FormsAuthentication的用法

using System;

using System.Data;

using System.Configuration;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using System.Data.SqlClient;

using System.Data;

/// <summary>

/// Formau 的摘要说明

/// </summary>

public class Formau

{

    public Formau()

    {

        //

        // TODO: 在此处添加构造函数逻辑

        //



    }
//设置cookie



    public static void SetCookie(string UserName)

    {

        string sql = "select * from UserInfo where UserName=@UserName";

        SqlParameter[] param ={ Database.MakeInParam("@UserName", SqlDbType.NVarChar, 50, UserName) };

        DataTable dt = Database.ExecuteDataSet(sql, param).Tables[0];

        string UserData = UserName + "#" + dt.Rows[0]["UserPassword"].ToString();

        if (dt.Rows.Count > 0)

        {
	   //把数据放入ticket

            FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, UserName, DateTime.Now, DateTime.Now.AddMinutes(60), false, UserData, FormsAuthentication.FormsCookiePath);
	//对数据进行加密

            string enyTicket = FormsAuthentication.Encrypt(ticket);

            HttpCookie newCookie = new HttpCookie(FormsAuthentication.FormsCookieName, enyTicket);

            HttpContext.Current.Response.Cookies.Add(newCookie);

        }

    }
//判断是否登陆



    public static bool isLogin()

    {

        return HttpContext.Current.User.Identity.IsAuthenticated;

    }
//退出



    public static void LoginOut()

    {

        FormsAuthentication.SignOut();

    }
//得到用户名



    public static string getUserName()

    {

        if (isLogin())

        {

           

            string strUserData = ((FormsIdentity)(HttpContext.Current.User.Identity)).Ticket.UserData;

            string[] UserData = strUserData.Split('#');

            if (UserData.Length != 0)

            {

                return UserData[0].ToString();

            }

            else

            {

                return "";

            }

        }

        else

        {

            return "";

        }

    }
//得到密码



    public static string GetStringPassword()

    {

        if (isLogin())

        {

            string strUserData = ((FormsIdentity)(HttpContext.Current.User.Identity)).Ticket.UserData;

            string[] UserData = strUserData.Split('#');

            if (UserData.Length != 0)

            {

                return UserData[1].ToString();

            }

            else

            {

                return "";

            }

        }

        else

        {

            return "";

        }

    }

}





评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值