Hi,
It is my code:
$.ajax({
type: "POST",
url: "Default.aspx",
data: "category=2&city=Boston",
contentType: "application/json; charset=utf-8",
dataType: "json",
processData :false,
error: function (json) {
alert(json.statusText);
},
success: function (json) {
alert(json.statusText);
}
});
How can I get my parameters(category,city) on the server? Request's parameters is always null.
Thanks, kukuwka