Hi all! All I want to do is get a page and return the contents of it:
$.ajax({
type: "POST",
url: "alg.aspx",
data: sqQstring,
success: function(msg) {
alert("Data Saved: " + msg);
}
});
This doesn't make an alert box and there are no errors in the error console. I've printed out the value of sqQString and it equals:
cc=12&cr=11&sq=10,4|10,4
I've also changed the URL in the ajax to:
http://localhost:2728/shaper/alg.aspx
This makes an alert box but with no data in it.
I've visited the page:
http://localhost:2728/shaper/alg.aspx?cc=12&cr=11&sq=10,4|10,4
And it shows lots of data.
Anyone help?