Action method in MVC
Action Method in MVC 1) When we create a controller in MVC it creates Default method Index which is called as Action method 2) When you create a method in controller every method is public. means every action method is public 3) When we create an Action method we can not create a method as static. 4) When we hit URL from the browser then it performs the MVC life cycle and finds a controller and action method in return response to the user. Let Understand How to create Action method in C...