InterviewSolution
Saved Bookmarks
| 1. |
What is the need of Action Filters in ASP.Net MVC? |
|
Answer» Action Filters allow us to execute the code before or after action has been executed. This can be done by decorating the action methods of controls with ASP.Net MVC attributes. |
|