利用cookie的跨域单点登录的简单实现

60 篇文章 0 订阅
 
Configuration:
1. Web.Config
在两个站点的配置配置文件machine节点上相同的validationKey, decryptionKey and validation的值,如
<machineKey validationKey="282487E295028E59B8F411ACB689CCD6F39DDD21E6055A3EE480424315994760A
DF21B580D8587DB675FA02F79167413044E25309CCCDB647174D5B3D0DD9141"
decryptionKey="8B6697227CBCA902B1A0925D40FAA00B353F2DF4359D2099"
validation="SHA1" />
2. IIS
在IIS->Directory security 上添加 "ASPNET Machine Account" 的所有权限
Coding :
代码示例
站点1的->Login.aspx.cs
if (login_Successful)
{
    //创建一个cookie
    HttpCookie cookie = new HttpCookie("strCookieName");
    //设置cookie的值  可以保存登录名称信息
    cookie.Value ="set_cookie_value";
    //设置 cookie 的生存周期5 分钟
    DateTime dtNow = DateTime.Now;
    TimeSpan tsMinute = new TimeSpan(0, 0, 5, 0);
    cookie.Expires = dtNow + tsMinute;
    //添加cookie
    Response.Cookies.Add(cookie);
    Response.Write("Cookie written. ");
}
检查cookie是否存在
站点2->Default.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
    //获取cookie
    HttpCookie cookie = Request.Cookies["strCookieName"];
    //检查cookie 是否存在
    if (cookie != null)
    {
        ReadCookie();
    }
    else
    {
        lblCookie.Text = "Cookie not found. ";
    }
}
protected void ReadCookie()
{
    //Get the cookie name the user entered
    //Grab the cookie
    HttpCookie cookie = Request.Cookies["strCookieName"];
    //Check to make sure the cookie exists
    if (cookie == null)
    {
        lblCookie.Text = "Cookie not found. ";
    }
    else
    {
        //Write the cookie value
        String strCookieValue = cookie.Value.ToString();
        lblCookie.Text = "The cookie contains: " + strCookieValue + "";
    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值