ASP.NET MVC: post-redirect-get pattern, with only two overloaded action methods
- by Rafi
Is it possible to implement post-redirect-get pattern, with two overloaded action methods(One for GET action and the other for POST action) in ASP.NET MVC.
In all of the MVC post-redirect-get pattern samples, I have seen three different action methods for the post-redirect-get process, each having different names. Is this really required?
For…