Add an error handler to make sure you do not receive an error message ...
$.ajax({
type: "POST",
url: "alg.aspx",
data: sqQstring,
success: function(msg) {
alert("Data Saved: " + msg);
},
error: function (request, ajaxOptions, exception){
alert(request.status);
alert(exception);
}
});
In addition to this, use Firefox with Firebug and look at the "Net" tab to see the actual request and response.
, , , GET, POST AJAX.
,
$.get("http://localhost:2728/shaper/alg.aspx?cc=12&cr=11&sq=10,4|10,4",
function (data) {
alert("Data Saved: " + data);
}
);
, , , !