Your MVC Action method on your controller is your PostBack handler.
Start with a simpler example; simple post of HTML form:
<form action="/MyController/MyAction" method="post">
<input type="text" name="myName" />
<input type="submit />
</form>
. , , :
public class MyController: Controller
{
public ActionResult MyAction(string myName)
{
return new ContentResult { Content = "Hello " + myName };
}
}
, . Javascript (jQuery - ) , . , 'onclick()' event XHR - Javascript, , post ( jQuery) .
, , -, HTML, HTTP Javascript.