前台
<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>
</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内容请搜索靠谱客的其他文章。
发表评论 取消回复