ASP.NET MVC action methods [duplicate]
Possible Duplicate:
How do you RedirectToAction开发者_运维百科 using POST instead of GET?
I have two versions of Index action in my controller, one for GET and another for POST. How can I use RedirectToAction method so that POST version of Index action is called? Normal RedirectToAction("Index") calls the GET version.
How do you redirect to a page using the POST verb?
精彩评论