i see the convention is to have the post action be the same name as the page but to put a:
[AcceptsVerb.HTTPVerbs.Post]
on the action method.
Is there anything wrong with have the post action be another name.
So if i have a page called Edit, the Edit action will display that page, while the "Update"action will post the edit changes. This seems clearer to me as compared to having the Edit "Get" and the Edit "Post"
wanted to get peoples thoughts on this if this is purely a convention thing or is there a right and wrong here?