Hi I have implemented one Ajax request to my site where I am calling one of page. It always return 200 OK but execute failed event I have tried lot of things but I am not getting where I am doing mistake. I adding my code here also please check and please let me the error.
var row = "1";
var json = "{'TwitterId':'" + row + "'}";
//var json = "pankaj";
$.ajax({
type: 'POST',
url: 'Jqueryoperation.aspx?Operation=DeleteRow',
contentType: 'application/json; charset=utf-8',
data: json,
dataType: 'json',
cache: false,
success: AjaxSucceeded,
error: AjaxFailed
});
function AjaxSucceeded(result) {
alert("hello");
alert(result.d);
}
function AjaxFailed(result) {
alert("hello1");
alert(result.status + ' ' + result.statusText);
}
My First Edit I am adding JqueryOpeartion.aspx page coding
protected void Page_Load(object sender, EventArgs e)
{
test();
}
private void test()
{
Response.Write("<script language='javascript'>alert('Record Deleted');</script>");
}
I need this string ("Record deleted ") after successfully deletion. I am able to delete content but I am not getting this message. Is this correct or and I am doing any mistake. Please suggest me correct way so I can solve this issue.
Please help me.
TwitterId, then you have to pass an object todata, not a string:data: {TwitterId: row}. – Felix Kling May 31 '11 at 11:21