gpt4 book ai didi

c# - 如何在网络方法中访问 session ?

转载 作者:IT王子 更新时间:2023-10-29 03:39:13 26 4
gpt4 key购买 nike

我可以在 WebMethod 中使用 session 值吗? ?

我试过使用 System.Web.Services.WebMethod(EnableSession = true) 但我无法访问像 in this example 这样的 session 参数:

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

这里是调用webmethod的JS:

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

最佳答案

您可以使用:

HttpContext.Current.Session

但它将是 null 除非您还指定 EnableSession=true:

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

关于c# - 如何在网络方法中访问 session ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4758575/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com