I\'ve been reading on this for a while and found that you can call a controller action by using:
$.ajax(\"MyController/MyAction\", function(data) { alert
You can easily call any controller's action using jQuery AJAX method like this:
Note in this example my controller name is Student
Controller Action
public ActionResult Test() { return View(); }
In Any View of this above controller you can call the Test() action like this: