asp.net通過js實現Cookie建立以及清除Cookie數組的代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BLTZ.aspx.cs" Inherits="BLTZ" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Button1_Click(object sender, EventArgs e)
{
HttpCookie cookie = Request.Cookies["MyCook"];
// 沒有就初使化
if (cookie == null)
{
cookie = new HttpCookie("MyCook"); //初使化並設定Cookie的名稱
DateTime dt = DateTime.Now;
TimeSpan ts = new TimeSpan(0, 0, 10, 0, 0);
cookie.Expires = dt.Add(ts);
Response.AppendCookie(cookie);
}
// 介面上有 5 個 checkBox,分別將 checkBox 的選值儲存到 cookie 中
for (int i = 1; i < 6; i++)
{
CheckBox control = this.FindControl(String.Format("CheckBox{0}", i)) as CheckBox;
if (control == null) continue;
string key = String.Format("Num{0}", i);
string value = control.Checked.ToString();
cookie.Values[key] = value;
}
// 遍曆
foreach (string key in cookie.Values.AllKeys)
{
string value = cookie.Values[key];
Response.Write(String.Format("SubKey:{0}; SubValue:{1}<br />", key, value));
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>無標題頁</title>
<script type="text/javascript">
function ClearCookie() {
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var a = GetCookie('MyCook');
alert(a);
var b = name + "=" + a + "; expires=" + exp.toString();
document.cookie = b;
alert(b);
}
function GetCookie(name)
//獲得Cookie的原始值
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
alert(document.cookie);
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return GetCookieVal(j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function GetCookieVal(offset) { //取得項名稱為offset的cookie值
var endstr = document.cookie.indexOf(";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
</script>
</head>
<body>
<form id="form1" runat="server" >
<div>
<asp:CheckBox ID="CheckBox1" runat="server" />
<asp:CheckBox ID="CheckBox2" runat="server" />
<asp:CheckBox ID="CheckBox3" runat="server" />
<asp:CheckBox ID="CheckBox4" runat="server" />
<asp:CheckBox ID="CheckBox5" runat="server" />
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
<a href="CWZ.aspx" >Post</a>
<input type="button" value="清楚Cookie" onclick="ClearCookie();" />
</div>
</form>
</body>
</html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.