概述
前台
<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所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复