當(dāng)前位置:首頁(yè)文章首頁(yè) IT學(xué)院 IT技術(shù)

iis中cookie如何設(shè)置

作者:  來(lái)源:  發(fā)布時(shí)間:2011-5-20 15:01:55  點(diǎn)擊:

這篇文章提供給大家學(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;
    }

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z