Model View Controller (MVC) Question:
What is the significance of NonActionAttribute?
Answer:
In general, all public methods of a controller class are treated as action methods. If you want prevent this default behaviour, just decorate the public method with NonActionAttribute.
Previous Question | Next Question |
Name a few different return types of a controller action method? | What is the significance of ASP.NET routing? |