i am getting the value from popup and passing value through ajax using jquery, but i am unable to pass this value to controller and getting the error "Not Found".
.js
function
alert(notes);
$.ajax(
{ url:
type:
dataType:
traditional:
data: { id: notes },
success:
},
error:
alert(req.responseText);
alert(
}
});
"Sorry!");controller
=========
[
{
}
AcceptVerbs(HttpVerbs.Post)]public ActionResult UpdateEditNote(string str)Debug.WriteLine("EditNotePopup");return View();can you plz look in to this. I want to pass the value to controller.
Replies
Know the answer? Post it — somebody with the same question will find it here.