我是靠谱客的博主 顺心山水,最近开发中收集的这篇文章主要介绍后台设置Cookie,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前台

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" Text="写Cookie"
            οnclick="Button1_Click" />
        <br />
        <asp:Button ID="Button2" runat="server" Text="读Cookie"
            οnclick="Button2_Click" />
        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>  
    </div>
    </form>
    <p>
&nbsp;</p>
</body>
</html>

后台

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace js
{
    public partial class WebCookie : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            HttpCookie cookie = new HttpCookie("name");
            cookie.Value = "张三";
            cookie.Expires = DateTime.Now.AddDays(1);
            Response.Cookies.Add(cookie);
        }

        protected void Button2_Click(object sender, EventArgs e)
        {
            TextBox1.Text=Request.Cookies["name"].Value;
        }
    }
}

 

最后

以上就是顺心山水为你收集整理的后台设置Cookie的全部内容,希望文章能够帮你解决后台设置Cookie所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部