我要怎麼把資料記錄寫進cookie中呢? |
尚未結案
|
Blueberrug
一般會員 發表:14 回覆:50 積分:17 註冊:2005-05-22 發送簡訊給我 |
大家好:
我想問一下要怎麼把頁面上的資料寫進cookie中呢? 頁面上有HtmlInputText,HtmlInputButton,Label三個控制項元件 我是想用JavaScript搭配Asp.net方式 當使用者按Button時,會觸發JavaScript函式來讀取HtmlInputText資料, 然後再讓頁面重新載入將資料顯示至Label上, 但是我不知道要怎麼讓頁面顯示才是正確呢? 以下是我的程式碼 <textarea cols="60" rows="10" class="vb" name="code"> <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html > <head runat="server"> <title>未命名頁面</title> function OnKPIClick() { var Id, Txt; Id = "Text1"; Txt = document.getElementById(Id); if (Txt != null) { alert("OnKPIClick() begin"); alert(": " window.); window. = "KPIData=" escape(Txt.value) ";path=/;"; alert(": " window.); window.parent.location.href = "Default.aspx?WriteKPI=yes"; alert("OnKPIclick() end"); } else { alert("Text1 is null"); } } </head> <body> <form id="form1" runat="server">
<input id="Text1" type="text" />
<input id="Button1" type="button" value="button" runat="server" /><br />
</form>
</body>
</html> Partial Class _Default
Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim I As Integer Button1.Attributes("onclick") = "OnKPIClick();"
If Request("WriteKPI") = "yes" Then
For I = 0 To Response.Cookies.Count - 1
Dim Name, Value, Path As String Name = Response.Cookies.Item(I).Name
Value = Response.Cookies.Item(I).Value
Path = Response.Cookies.Item(I).Path lblMsg.Text = String.Format("Name: {0}, Value:{1}, Path:{2}", Name, Value, Path) Response.Write(lblMsg.Text)
Next
End If
End Sub
End Class </textarea>
|
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |