Is there any way to set DefaultBinder default on my own?
ModelBinders.Binders.DefaultBinder = new MyOwnModelBinder();
In Global.asax.cs:
public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { //... ModelBinders.Binders.DefaultBinder = new MyModelBinder(); } }