#region 讀取或寫入cookie2 /// 3 /// 寫cookie值
4 ///
5 /// 名稱
6 /// 值
7 public static void writecookie(string strname, string strvalue)
8
14 cookie.value = urlencode(strvalue);
16 }
17 18 /// 19 /// 寫cookie值
20 ///
21 /// 名稱
22 /// 值
23 public static void writecookie(string strname, string key, string strvalue)
24
30 cookie[key] = urlencode(strvalue);
32 }
33 34 /// 35 /// 寫cookie值
36 ///
37 /// 名稱
38 /// 值
39 public static void writecookie(string strname, string key, string strvalue, int expires)
40
46 cookie[key] = urlencode(strvalue);
47 cookie.expires = datetime.now.addminutes(expires);
49 }
50 51 /// 52 /// 寫cookie值
53 ///
54 /// 名稱
55 /// 值
56 /// 過期時間(分鐘)
57 public static void writecookie(string strname, string strvalue, int expires)
58
64 cookie.value = urlencode(strvalue);
65 cookie.expires = datetime.now.addminutes(expires);
67 }
68 /// 69 /// 寫cookie值
70 ///
71 /// 名稱
72 /// 過期時間(天)
73 public static void writecookie(string strname, int expires)
74
80 cookie.expires = datetime.now.adddays(expires);
82 }
83 84 /// 85 /// 寫入cookie,並指定過期時間
86 ///
87 /// key
88 /// value
89 /// 過期時間
90 public static void iwritecookie(string strname, string strvalue, int expires)
91
97 cookie.value = strvalue;
98 if (expires > 0)
99
103 }
104
105 /// 106 /// 讀cookie值
107 ///
108 /// 名稱
109 /// cookie值
110 public static string getcookie(string strname)
111
116
117 /// 118 /// 讀cookie值
119 ///
120 /// 名稱
121 /// cookie值
122 public static string getcookie(string strname, string key)
123
129 #endregion
js寫入 讀取 刪除cookies
寫入cookies function setcookie name,value 讀取cookies function getcookie name 刪除cookies function delcookie name 使用示例 setcookie name hayden alert getcookie...
xml讀取和寫入
1 需要的命名空間 using system.collections.generic using system.io using system.text using system.xml 3 寫入後的xml檔案樣式 1神州俠侶 5045.55 tiger 以下 為自動建立序號時使用,若你的資料來源本...
檔案讀取和寫入
open 返回乙個檔案物件,open filename,mode f open workfile w 第乙個引數是包含檔名的字串,第二個引數可以是包含一些字元的字串 r 僅讀取檔案,w 僅寫入檔案,a 開啟檔案以進行新增的模式 r 開啟檔案進行讀取和寫入,模式引數是可選的。r 如果省略,將被假定。b...