Search Results

1
vote
3answers
288 views

Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?

In handling a form post I have something like public ActionResult Insert() { Order order = new Order(); BindingHelperExtensions.UpdateFrom(order, this.Reques …
1
vote
2answers
733 views

How do you use the new ModelBinder classes in ASP.NET MVC Preview 5

You'll notice that Preview 5 includes the following in their release notes: Added support for custom model binders. Custom binders allow you to define complex types as parame …
2
votes

How do you use the new ModelBinder classes in ASP.NET MVC Preview 5

Well I looked into this. ASP.NET provides a common location for registering the implementation of IControlBinders. They also have the basics of this working via the new Controller.UpdateModel metho …
4
votes

Views in separate assemblies in ASP.NET MVC

Essentially this is the same issue as people had with WebForms and trying to compile their UserControl ASCX files into a DLL. I found this …
1
vote

Best way to unit test ASP.NET MVC action methods that use BindingHelperExtensions.UpdateFrom?

I'm now using ModelBinder so that my action metho …
14
votes

HTML.ActionLink method

I think what you want is this: Html.ActionLink(article.Title, "Login", "Item", new { id = article.ArticleID }, null) This uses the following method ActionLink sign …
1
vote

Setting up virtual directory when using IIS for ASP.NET MVC debugging

Yes you can run an ASP.NET MVC as the root application. Just use IIS manager to set the home directory for the website to the your application's path. Then make the appropriate ch …