Can't call page method from JQuery?
Posted
by user356787
on Stack Overflow
See other posts from Stack Overflow
or by user356787
Published on 2010-06-02T21:38:17Z
Indexed on
2010/06/02
22:04 UTC
Read the original article
Hit count: 145
I have a page called AddNews.aspx and in codebehind a web method called AddNews(Parameters)..
AddNews.aspx page is inherited from a master page.. So i used contentplaceholder.
I have a button..It's id is btnSave.
Here is jquery code:
$(function() {
$("[id$='_btnSave']").click(function() {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
data: $.toJSON(veriler),
url: "AddNews.aspx/AddNews",
dataType: "json",
success: function(result) {
$("#result").html('News added');
},
error: function() {
alert('Problem');
}
});
});
});
</script>
Button click trigger now.. But it doesnt call Web Page Method.. What's the problem?
© Stack Overflow or respective owner