Sorry to ask such a basic question, but for me it was fundamental. To better understand the filters, I need to understand these concepts. Although I have been on ASP.NET MVC for several months now and am doing nice demonstrations, I am more familiar with the concept of an action method than the result of an action.
What:
- Action method?
- The result of the action?
- How are they connected?
Say I have it
public ViewResult ShowPerson(int id) { var friend = db.Persons.Where(p => P.PersonID == id).First(); return View(friend); }
How do these concepts apply to the above code?
Thanks for the help.
asp.net-mvc action
Richard77
source share