Если вы ничего не получите в сеансе, потому что ноль передается в веб-метод, используйте отладчик, чтобы просмотреть ваш javascript и c #, чтобы увидеть, откуда он берется.
Код, который вы разместили, кажется нормальным, так как мне удалось заставить его работать на быстрой тестовой странице, поэтому проблема в другом месте вашего кода. Вот мой тестовый код, надеюсь, он поможет.
JQuery:
$(document).ready(function () {
$('#lnkCall').click(function () {
setSession($('#input1').val(), $('#input2').val());
return false;
});
});
function setSession(Amount, Item_nr) {
var args = {
amount: Amount, item_nr: Item_nr
}
$.ajax({
type: "POST",
url: "buycredit.aspx/SetSession",
data: JSON.stringify(args),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
alert('Success.');
},
error: function () {
alert("Fail");
}
});
}
HTML:
<div>
Input1: <input id="input1" type="text" />
<br />
Input2 <input id="input2" type="text" />
<br />
<a id="lnkCall" href="#">make call</a>
<br />
<asp:Button ID="myButton" runat="server" Text="check session contents" onclick="myButton_Click" />
<br />
<asp:Literal ID="litMessage" runat="server" />
</div>
с #
[System.Web.Services.WebMethod(EnableSession = true)]
public static void SetSession(int amount, int item_nr)
{
HttpContext.Current.Session["amount"] = amount;
HttpContext.Current.Session["item_nr"] = item_nr;
}
protected void myButton_Click(object sender, EventArgs e)
{
litMessage.Text = "ammount = " + HttpContext.Current.Session["amount"] + "<br/>item_nr = " + HttpContext.Current.Session["item_nr"];
}