InterviewSolution
Saved Bookmarks
| 1. |
What Are Actions In Mvc? |
|
Answer» 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. 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. |
|