Archives
Disable submit buttons on form submit with jQuery.validate and ASP.NET MVC 2
I had a very common requirement to fill: when user clicks form submit button (or enter on keyboard) the button needs to be disabled in order to prevent double submits. Double submits could of course … more
Controller dependency missing on test? Try MvcContrib TestControllerBuilder
Ever faced this situation: You have nice and easy controller method, say:
public ActionResult Demonstrate(string id) {
this.Repository.Demonstrate(id);
string url = … more