[WebMethod(EnableSession = true)]

在asp.net2.0中可以使用[WebMethod(EnableSession = true)] 了
 

一、Session     [WebMethod(EnableSession = true)]
    public string Hello()
    {
        return "Hello," + Session["user"];
    }

    [WebMethod(EnableSession = false)]
    public string Hello1()
    {
        return "Hello," + Session["user"];
    }

    [WebMethod]
    public string Hello2()
    {
        return "Hello," + Session["user"];
    }
“EnableSession” 为 XML Web services 方法启用会话状态,启用为 true。默认状态为 false。

以上三种方式均能实现对Session变量的使用。但要注意:
如果状态设置为 true,则客户端访问WS时,可以不赋值Session变量,有默认值。
如果状态设置为 false,则客户端访问WS时,必须要先对Session变量赋值,否则报错。

二、Application
    [WebMethod]
    public string Hello3()
    {
        return "Hello," + Application["user"];
    }
使用Application时,不需要设置方法标签
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章