1

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.

Community
  • 1
  • 1
munna
  • 187
  • 2
  • 7

1 Answers1

1

How do you redirect to a page using the POST verb?

Community
  • 1
  • 1
Overdose
  • 1,470
  • 3
  • 16
  • 29