What are Actions in MVC? Technology Community › Category: ASP.NET MVC › What are Actions in MVC? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Actions are the methods in Controller class which is responsible for returning the view or json data. Action will mainly have return type — “ActionResult” and it will be invoked from method — “InvokeAction()” called by controller.