如何在网络方法中访问会话?


85

我可以在内使用会话值WebMethod吗?

我已经尝试使用,System.Web.Services.WebMethod(EnableSession = true)但是无法访问Session参数,例如以下示例

    [System.Web.Services.WebMethod(EnableSession = true)]
    [System.Web.Script.Services.ScriptMethod()]
    public static String checaItem(String id)
    { 
        return "zeta";
    }

这是调用web方法的JS:

    $.ajax({
        type: "POST",
        url: 'Catalogo.aspx/checaItem',
        data: "{ id : 'teste' }",
        contentType: 'application/json; charset=utf-8',
        success: function (data) {
            alert(data);
        }
    });

4
发布代码示例将帮助我们为您提供答案。
volpav 2011年

你有例外吗?
Darin Dimitrov

1
在上面的示例中,我没有看到您尝试访问任何会话值。您需要先设置会话变量,然后像发布的链接一样对其进行访问。返回(int)Session [“转化”];
capdragon 2011年

@volpav他提供了示例代码。
BrainSlugs83 2012年

不,@ capdragon对于静态方法不存在Page的Session属性(WebMethods必须是静态的)-他在询问在哪里找到该属性-如下所述,它位于当前的HttpContext中。
BrainSlugs83 2012年

Answers:


116

您可以使用:

HttpContext.Current.Session

但是,这将是null,除非你还指定EnableSession=true

[System.Web.Services.WebMethod(EnableSession = true)]
public static String checaItem(String id)
{ 
    return "zeta";
}

18
具有讽刺意味的是,这就是我已经在做的-只是它没有为我工作。HttpContext.Current.Session.Count返回0(即Session中没有任何项)。对我来说,答案就出在问题上,将[WebMethod]更改为[WebMethod(EnableSession = true)]是可行的。!
BrainSlugs83 2012年

4
记住要配置web.config <sessionState mode =“ InProc” />
Moesio,2014年

10

有两种方法可以为Web方法启用会话:

1. [WebMethod(enableSession:true)]

2. [WebMethod(EnableSession = true)]

第一个带有构造函数参数的参数enableSession:true对我不起作用。第二个带有EnableSession属性的作品。


我不知道第一个编译器是否可以编译-我相信它不会编译。第二个确实起作用,因为您正在设置属性(在XD中很明显)。
MVCDS 2015年

@MVCDS为什么您不应该编译它?您可以WebMethodAttribute(Boolean)在文档中找到公共构造函数。
术士

你是绝对正确的。如果不设置参数名称,它的行为是否会有所不同?因为如果这样做的话,在对构造函数进行编码时(属性),发生了一些非常奇怪的事情。
MVCDS 2015年

1

对于启用会话,我们必须使用[WebMethod(enableSession:true)]

[WebMethod(EnableSession=true)]
public string saveName(string name)
{
    List<string> li;
    if (Session["Name"] == null)
    {
        Session["Name"] = name;
        return "Data saved successfully.";

    }

    else
    {
        Session["Name"] = Session["Name"] + "," + name;
        return "Data saved successfully.";
    }


}

现在使用会话检索这些名称,我们可以这样

[WebMethod(EnableSession = true)]
    public List<string> Display()
    {
        List<string> li1 = new List<string>();
        if (Session["Name"] == null)
        {

            li1.Add("No record to display");
            return li1;
        }

        else
        {
            string[] names = Session["Name"].ToString().Split(',');
            foreach(string s in names)
            {
                li1.Add(s);
            }

            return li1;
        }

    }

因此它将从会话中检索所有名称并显示。


0

您可以像这样尝试[WebMethod] public static void MyMethod(字符串ProductID,字符串价格,字符串数量,字符串总计)//在此处添加新参数{db_class Connstring = new db_class(); 尝试{

            DataTable dt = (DataTable)HttpContext.Current.Session["aaa"];

            if (dt == null)
            {
                DataTable dtable = new DataTable();

                dtable.Clear();
                dtable.Columns.Add("ProductID");// Add new parameter Here
                dtable.Columns.Add("Price");
                dtable.Columns.Add("Quantity");
                dtable.Columns.Add("Total");
                object[] trow = { ProductID, Price, Quantity, Total };// Add new parameter Here
                dtable.Rows.Add(trow);
                HttpContext.Current.Session["aaa"] = dtable;                   
            }
            else
            {
                object[] trow = { ProductID, Price, Quantity, Total };// Add new parameter Here
                dt.Rows.Add(trow);
                HttpContext.Current.Session["aaa"] = dt;
            }


        }
        catch (Exception)
        {
            throw;
        }
    }


0

在C#中,使用Web方法的页面后面的代码中,

[WebMethod(EnableSession = true)]
        public static int checkActiveSession()
        {
            if (HttpContext.Current.Session["USERID"] == null)
            {
                return 0;
            }
            else
            {
                return 1;
            }
        }

而且,在aspx页面中

$.ajax({
                type: "post",
                url: "",  // url here
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                data: '{ }',
                crossDomain: true,
                async: false,
                success: function (data) {
                    returnValue = data.d;
                    if (returnValue == 1) {

                    }
                    else {
                        alert("Your session has expired");
                        window.location = "../Default.aspx";
                    }
                },
                error: function (request, status, error) {
                    returnValue = 0;
                }
            });
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.