InterviewSolution
| 1. |
What Are Controllers? |
|
Answer» A CONTROLLER is used to manage the logic for a part of your application. Most commonly, CONTROLLERS are used to manage the logic for a single MODEL. Controllers can include any number of METHODS which are usually REFERRED to as actions. Actions are controller methods used to display views. An action is a single method of a controller. A controller is used to manage the logic for a part of your application. Most commonly, controllers are used to manage the logic for a single model. Controllers can include any number of methods which are usually referred to as actions. Actions are controller methods used to display views. An action is a single method of a controller. |
|