内でセッション値を使用できます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";
}
これがwebmethodを呼び出すJSです:
$.ajax({
type: "POST",
url: 'Catalogo.aspx/checaItem',
data: "{ id : 'teste' }",
contentType: 'application/json; charset=utf-8',
success: function (data) {
alert(data);
}
});