I blogged a while ago about creating a UriModelBinder to bind a url string to a Uri object (see http://blog.statichippo.com/archive/0001/01/01/uri-modelbinders-and-updatemodel.aspx) but things have changed since then (I think that was RC1, but I don't recall). Anyway, here's the same gist updated for the MVC RTM release: 1: public class UriModelBinder : IModelBinder
2: {
3: #region IModelBinder Members
4: public object...