最佳答案
我可以在 WebMethod
中使用会话值吗?
我试过使用 System.Web.Services.WebMethod(EnableSession = true)
,但是我不能访问会话参数,比如 在这个例子中:
[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);
}
});