Would anyone be willing to share some code related to how they're registering routes in their Global.asax.cs? I've been attempting to utilize the code in this post (beautifully written, btw) however I'm struggling to get it working correctly. When I run the given code I receive an error because it attempts to find the controller "Post" and the action "Action". So based on my MapRoute it's trying to go to Post.aspx/Action which does not exist.
I also tried removing BeginForm("Action","Post") and instead stuck with simply BeginForm(). This almost appears to work, it enters the overridden IsValidName method but the actionName does not match my button, instead it matches my page.
Any thoughts or help would be appreciated. I believe we're using MVC v2.0.50727
Thank you,
Jared