zoukankan      html  css  js  c++  java
  • Asp.net 得到Cookie中值


        將 Cookie中的值顯示在頁面上,代碼如下:
    public partial class _Default : System.Web.UI.Page 
    {
        
    protected void Page_Load(object sender, EventArgs e)
        {
            
    //讀取Cookie中的值 scott 20080610
            if (Request.Cookies.Count > 0)
            {

                HttpCookieCollection hccCookie 
    = new HttpCookieCollection();
                
    //得到用戶端Cookie
                hccCookie = Request.Cookies;

                
    //得到所有Key
                string[] sArr = hccCookie.AllKeys;
                Response.Write(
    "hccCookie.allKeys 數量"+sArr.Length+"<br>");
                HttpCookie hc;
                
    int i = 1;
                
    foreach (string sCookie in Request.Cookies.AllKeys)
                {

                    Response.Write(
    "" + i + "值: <br>");
                    hc 
    = hccCookie[sCookie];
                    Response.Write(ConvertUtf8(sCookie) 
    + "是否含有子key: " + hc.HasKeys + "<br>");

                    
    //判斷有沒有子Key。如果有,循環得出值
                    if (hc.HasKeys)
                    {
                        Response.Write(
    "子Key值為: <br>");
                        
    foreach (string sVar in hc.Values)
                        {
                            
    string cookieSubKey = ConvertUtf8(sVar);
                            
    string cookieSubValue = ConvertUtf8(hc[sVar]);
                            Response.Write(cookieSubKey 
    + ": " + cookieSubValue + "<br>");
                        }
                    }
                    
    //沒有子key時,直接得出值
                    else
                    {
                        Response.Write(ConvertUtf8(sCookie) 
    + "的值:" + ConvertUtf8(hc.Value) + "<br>");
                    }

                    i
    ++;
                }
            }
        }

        
    /// <summary>
        
    /// 將內容轉成Utf8
        
    /// </summary>
        
    /// <param name="asValue"></param>
        
    /// <returns></returns>
        private string ConvertUtf8(string asValue)
        {
            System.Text.Encoding encValue 
    = System.Text.Encoding.GetEncoding("utf-8");
            
    //HttpUtility:提供用于在处理 Web 请求时编码和解码 URL 的方法。
            string sReturn = HttpUtility.UrlDecode(asValue, encValue);
            
    return sReturn;
        }
    }


  • 相关阅读:
    IOC Unity的配置问题
    编译时常量与运行时常量
    Revit二次开发,将插件按钮(Ribbon)变灰或者隐藏
    C#类库读取App.config配置文件
    winform固定窗体大小
    Revit二次开发,获取模型版本信息
    JavaScript:文件保存自動下載函數:Save和SaveAs
    JavaScript:年月日時分秒設置
    JavaScript:字符串の空格刪減和字符刪減功能
    JavaScript:獲取數據の類型
  • 原文地址:https://www.cnblogs.com/scottckt/p/1217268.html
Copyright © 2011-2022 走看看