- 1. IIS6.0(WIN2003安裝iis i386所需文件) 完整安裝包
- 2. URL重寫插件IIRF(專為IIS打造) V2.1 英文免費(fèi)版
- 3. 網(wǎng)上考試系統(tǒng)(內(nèi)含IIS服務(wù)器) V2.0 中文破解版
- 4. 無(wú)須安裝IIS的WEB文件服務(wù)器
- 5. 協(xié)助站長(zhǎng)了解搜索引擎對(duì)你網(wǎng)站的爬行情況大包包-II...
- 6. IisWebBackup(IIS備份) V1.0 簡(jiǎn)體中文版
- 7. iis 6.0 完整安裝包 適用XP
- 8. Expired Cookies Cleaner V1.02 簡(jiǎn)體中文綠色版
- 9. IIS備份精靈(可用于備份/移植 IIS 的站點(diǎn)信息) V0...
- 10. SSL Diagnostics (IIS的SSL診斷工具) 1.1.34.0 綠色...
iis中cookie如何設(shè)置
這篇文章提供給大家學(xué)習(xí),主要是講iis中cookie的設(shè)置方法,希望對(duì)大家有所幫助。
另一種解決方法:用十六進(jìn)制unicode轉(zhuǎn)碼:
我使用的情況是:服務(wù)器和客戶端寫cookie,只在后臺(tái)讀cookie
后臺(tái)存cookie:
/*updateby:2009/11/17
*
* 將字符串轉(zhuǎn)為十六進(jìn)制unicode編碼
*
*
* 返回值:dst---如:67686d6635
*
*/
public string StringToUnicode(string srcText)
{
string dst = "";
char[] src = srcText.ToCharArray();
for (int i = 0; i < src.Length; i++)
{
byte[] bytes = Encoding.Unicode.GetBytes(src[i].ToString());
string str = bytes[1].ToString("X2") + bytes[0].ToString("X2");
dst += str;
}
return dst;
}
后臺(tái)讀cookie:
/*updateby:2009/11/17
*
* 將十六進(jìn)制Unicode編碼轉(zhuǎn)換為漢字
*
* 注,本方法不支持名字中包含數(shù)字
*
* 返回值:dst----如:霍元甲
*
*/
public string UnicodeToString(string srcText)
{
string dst = "";
string src = srcText;
int len = srcText.Length / 4;
for (int i = 0; i <= len - 1; i++)
{
string str = "";
str = src.Substring(0, 4);
src = src.Substring(4);
byte[] bytes = new byte[2];
bytes[1] = byte.Parse(int.Parse(str.Substring(0, 2), NumberStyles.HexNumber).ToString());
bytes[0] = byte.Parse(int.Parse(str.Substring(2, 2), NumberStyles.HexNumber).ToString());
dst += Encoding.Unicode.GetString(bytes);
}
return dst;
}
- 1. 教你輕松備份和恢復(fù)Windows IIS服務(wù)器設(shè)置
- 2. windows 2000中的IIS網(wǎng)站安全構(gòu)建指南
- 3. 幫你提升IIS服務(wù)器的執(zhí)行效率
- 4. 讓IIS6.0支持ASP方法分享
- 5. IIS系統(tǒng)出錯(cuò)的簡(jiǎn)單說(shuō)明
- 6. cookie機(jī)制和session機(jī)制兩者之間的比較
- 7. 關(guān)于5個(gè)IIS常用組件的注冊(cè)問題
- 8. 下個(gè)軟件幫你解決WINXP或WIN2000的IIS連接數(shù)限制
- 9. ASP學(xué)習(xí)之Cookie的基本使用技巧
- 10. 教你使用ASP和IIS設(shè)置目錄安全