类似于下面统计COOKIE的方法
string str = "";
for (int i = 0; i < this.Request.Cookies.Count; i++)
            {
                str += this.Request.Cookies[i].Name + "|";            }
            this.Response.Write(str);
            return;

解决方案 »

  1.   

    学习了,我想知道如何能够修改asp.net的站的内页的title,谁能解答下
      

  2.   

    <head runat="server">
        <title>无标题页</title>
    </head>1.runat="server"
    2.不然用<%=%>
    这32
    \
      

  3.   

    我只能获取当前用户的Session变量名:
    for (int i = 0; i < Session.Keys.Count; i++)
    Response.Write(Session.Keys[i] + "<br/>");
      

  4.   

                            string str="";
    Session["j"]="d";
    Session["j1"]="dd";
    foreach(string str1 in Session.Contents)
    {
    str+=str1+"|";
    }
    Response.Write(str);
    return;
    解决,结贴