I know, I know, I know. I shouldn\'t be doing webforms inside of MVC, I completely agree. But, the people who sign my paycheck will not approve a complete conversion of ou
In case anyone is still interested, you can test for a POST from inside an MVC Action Method like this:
if (Request.HttpMethod=="POST") { }