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

  前台
  <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" id="chbExpire" runat="server" οnclick="ChangeClick(1);" />30天<input type="checkbox"
 id="chbNoExpire" runat="server" οnclick="ChangeClick(2);" />永久
 </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();
                //初始化登陆后的数据
            }
     }

转载于:https://www.cnblogs.com/boulder19830907/archive/2008/12/04/1347744.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ASP.NET 中,可以使用 C# 代码基于 cookie 实现购物车功能,具体步骤如下: 1. 定义一个名为 "ShoppingCart" 的类,包含商品信息、数量、价格等属性。 ``` public class ShoppingCartItem { public int ProductId { get; set; } public string ProductName { get; set; } public decimal Price { get; set; } public int Quantity { get; set; } } ``` 2. 在添加商品到购物车时,将购物车信息保存到 cookie 中。 ``` public void AddToCart(int productId, string productName, decimal price, int quantity) { // 读取购物车信息 List<ShoppingCartItem> cart = GetShoppingCart(); // 查找商品是否已经存在于购物车中 ShoppingCartItem item = cart.FirstOrDefault(i => i.ProductId == productId); if (item == null) { // 商品不存在于购物车中,将其添加到购物车 item = new ShoppingCartItem { ProductId = productId, ProductName = productName, Price = price, Quantity = quantity }; cart.Add(item); } else { // 商品已经存在于购物车中,更新其数量 item.Quantity += quantity; } // 将购物车信息保存到 cookie 中 SaveShoppingCart(cart); } ``` 3. 从 cookie 中读取购物车信息。 ``` public List<ShoppingCartItem> GetShoppingCart() { List<ShoppingCartItem> cart = new List<ShoppingCartItem>(); HttpCookie cookie = HttpContext.Current.Request.Cookies["ShoppingCart"]; if (cookie != null) { string json = HttpUtility.UrlDecode(cookie.Value); cart = JsonConvert.DeserializeObject<List<ShoppingCartItem>>(json); } return cart; } ``` 4. 将购物车信息保存到 cookie 中。 ``` public void SaveShoppingCart(List<ShoppingCartItem> cart) { string json = JsonConvert.SerializeObject(cart); HttpCookie cookie = new HttpCookie("ShoppingCart", HttpUtility.UrlEncode(json)); HttpContext.Current.Response.Cookies.Add(cookie); } ``` 5. 在购物车页面中,读取购物车信息并显示出来。 ``` List<ShoppingCartItem> cart = GetShoppingCart(); foreach (ShoppingCartItem item in cart) { // 显示商品信息、数量、价格等 } ``` 注意,使用 cookie 实现购物车功能的缺点是,购物车信息存储在客户端,容易被篡改或删除。因此,对于重要的商业网站,建议使用服务器端的购物车实现方式。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值