vote up 40 vote down star
63

Please, share your ideas which could serve as best practices or guidelines for creating ASP.NET MVC web applications. These ideas and/or coding samples should be relevant to ASP.NET MVC application creation itself and not to TDD or similar practices.

Other resources:

flag

8 Answers

vote up 29 vote down

Here are a few of my tips. And I'd like to hear yours.

Create extension methods of UrlHelper

public static class UrlHelperExtensions  
{   
    // for regular pages:

    public static string Home(this UrlHelper helper)   
    {   
        return helper.Content("~/");   
    }   

    public static string SignUp(this UrlHelper helper)   
    {
        return helper.RouteUrl("SignUp");   
    }

    // for media and css files:

    public static string Image(this UrlHelper helper, string fileName)   
    {   
        return helper.Content("~/Content/Images/{0}".
               FormatWith(fileName));   
    }

    public static string Style(this UrlHelper helper, string fileName)   
    {   
        return helper.Content("~/Content/CSS/{0}".
               FormatWith(fileName));   
    } 

    public static string NoAvatar(this UrlHelper helper)   
    {   
        return Image(helper, "NoAvatar.png");
    }
}

Use Bootstrapper in Global.asax

If you're doing lots of things in Application_Start, it's better to encapsulate that logic using bootstrapper design pattern.

Decorate your action methods with proper AcceptVerbs (and CacheControl for some actions) attributes

[AcceptVerbs(HttpVerbs.Get), OutputCache(CacheProfile = "Products")]   
public ActionResult Products(string category)   
{
    // implementation goes here   
}

Use Dependency Injection pattern

This will make your application loosely coupled and more testable.

Use typed views

Avoid passing data to views via ViewData, create custom models instead for your data and typed views.

Async Controllers

Here is an example:

public Func<ActionResult> Foo(int id) {
     AsyncManager.RegisterTask(
        callback => BeginGetUserByID(id, callback, null),
        a => {
            ViewData["User"] = EndGetUserByID(a);
        });
    AsyncManager.RegisterTask(
        callback => BeginGetTotalUsersOnline(callback, null),
        a => {
            ViewData["OnlineUsersCount"] = EndGetTotalUsersOnline(a);
        });

    return View;
}

What is happening here is that the MVC system executes both BeginGetUserByID and BeginGetTotalUsersOnline in parallel and when both complete, it will then process the View (display the web page). Simple, clean, efficient.

Security considerations

Don't forget to set [AcceptVerbs(HttpVerbs.Post)], [AntiForgeryToken] and [Authorize] attributes for your submit action methods. Example:

[Authorize("Clients"), AcceptVerbs(HttpVerbs.Post), ValidateAntiForgeryToken]
public ActionResult SendMoney(int accountID, int amount) {
     // your code here
}

And also put this into your form view:

<%= Html.AntiForgeryToken() %>
link|flag
stop adding new stuff every 5 minutes, just do it in one time! – Fredou Apr 2 at 12:33
3  
Why on earth was this downvoted? +1 For helpful information. Constantly updating is also designed behaviour in SO. – Damien Apr 2 at 12:43
@Damien, I agree with you but when it's 6 edits in less than 35 minutes and some are only minor stuff... my point is, do it(the author) correctly the first or second time, at least – Fredou Apr 2 at 12:48
9  
@Fredou, why do you care how often this is edited? I don't think you get the nature of the wiki-style of this site. He should continue to edit, refine, and make his answer better every chance he gets. – Simucal Jun 3 at 23:56
vote up 2 vote down

Here's a simple one:

Do not reference the models namespace from any of the views. I've seen in numerous examples where the controller fetches a list of objects from the model and this is passed directly into the view data rather than it being transformed by the controller into something appropriate to that view. This creates a direct dependency between the model structure and the view.

So in short, avoid code like this in your markup:

<%@ Import Namespace="MyProject.Models" %>
link|flag
Huh? So are you opposed to strongly-typed views in principal? – Portman Apr 2 at 12:41
1  
No, not at all. I'm just opposed to taking an object directly from the model and exposing that to a view. I don't know how that could be read as opposition to strong types but I'll be glad to edit the answer to make it clearer. – Chris Simpson Apr 2 at 13:14
I think what your trying to say is use some sort of presentation wrapper around your models right? – Micah Apr 2 at 13:19
2  
Yes, some sort of DTO between the model and the view – Chris Simpson Apr 2 at 13:25
I have a seperate library with only my business objects. This is referenced in the model, the controller and the view. Would this solve the issue or make it worse? Why? – boris callens Apr 17 at 8:45
show 1 more comment
vote up 5 vote down

Create Helpers to generate URLs for the stylesheets, javascript files and any other resources (via Storefront). This is very important since you might end up changing the structure of your resources directories a lot.

public static class UrlHelperExtensions  
{   
    public static string CssResource(this UrlHelper helper, string filename)   
    {   
        return helper.Content(string.Format("~/Contents/CSS/{0}", filename));   
    }  


    public static string ImageResource(this UrlHelper helper, string filename)   
    {   
        return helper.Content(string.Format("~/Contents/Images/{0}", filename));   
    }  
}

Hope that helps.

link|flag
vote up 3 vote down

Good thoughts on both architecture and the details:

Jimmy Bogard: How we do MVC

http://www.lostechies.com/blogs/jimmy_bogard/archive/2009/04/24/how-we-do-mvc.aspx

Jeremy D. Miller: Our “Opinions” on the ASP.NET MVC (Introducing the Thunderdome Principle)

http://codebetter.com/blogs/jeremy.miller/archive/2008/10/23/our-opinions-on-the-asp-net-mvc-introducing-the-thunderdome-principle.aspx

link|flag
vote up 3 vote down

Don't bother with extending UrlHelper, just use Html.BuildUrlFromExpression.

link|flag
vote up 0 vote down

Where should I put this new Extension class?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.