ฉันสามารถใช้ค่าเซสชันภายใน a ได้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";
}
นี่คือ JS ที่เรียกวิธีการเว็บ:
$.ajax({
type: "POST",
url: 'Catalogo.aspx/checaItem',
data: "{ id : 'teste' }",
contentType: 'application/json; charset=utf-8',
success: function (data) {
alert(data);
}
});