C# Cookies跨域登陆(写入cookie登录)

本文介绍了一种使用C#进行跨域Cookie登录的方法,包括写入和清除Cookie的操作。通过设置Cookie的值、过期时间和域,实现了用户登录状态的持久化,并在需要时清除登录信息。
摘要由CSDN通过智能技术生成

 //写入cookie登录记录作为其它系统使用
        public void writeCookie(string user, string password, string Ulevel, string Utype)
        {
            //deleteCookie();//增记录时删除以前的用户记录

            HttpContext.Current.Response.Cookies["UserName"].Value = user;
            HttpContext.Current.Response.Cookies["Userpass"].Value = password;
            //HttpContext.Current.Response.Cookies["Ulevel"].Value=Ulevel;//暂时不用
            //HttpContext.Current.Response.Cookies["Utype"].Value=Utype;

            HttpContext.Current.Response.Cookies["UserName"].Domain = ".zgbfw.com";
            HttpContext.Current.Response.Cookies["Userpass"].Domain = ".zgbfw.com";

            HttpContext.Current.Response.Cookies["UserName"].Domain = "js.zgbfw.com";
            HttpContext.Current.Response.Cookies["Userpass"].Domain = 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值