Make it easier to share the same action method between the POST and the GET version of a page
Right now this is possible... but you will hate life if you try to make it work. This should be easy. You should be able to quickly check if the method was invoked via post, and if so do some processing, otherwise return an empty model, and in both cases you will most likely be setting a lot of the same properties on your model. Make this functionality easy!
1
vote