Zurb Foundation 4 with ASP.NET MVC 4 – Step by Step

UPDATE: An updated version of this article using Foundation 6 with ASP.NET Core MVC is available here.

In my earlier article, I’ve provided the step by step instruction on creating a basic ASP.NET Web Forms with Zurb Foundation user interface framework. In this article, I’ll guide you through the creation of your first Zurb Foundation 4 with ASP.NET MVC 4 web application.

Overview of this article:

  • Creating ASP.NET MVC Project in Visual Studio 2012.
  • Removing the default UI Framework (jQuery-UI) from the project.
  • Adding Zurb Foundation libraries.
  • Using Foundation layout.

Tools and Technologies used:

  • Visual Studio Express 2012 for Web.
  • Dot Net Framework 4.5.
  • ASP.NET MVC 4.
  • Razor View Engine.
  • Visual C#.
  • Zurb Foundation 4.3.1 for MVC 4 from NuGet.

Sample Source Code:

The sample project source code created with this step by step instruction is available in GitHub. Download the sample code solution from here (https://github.com/mytecbits/MVC4-Foundation4-Sample/).

Steps for creating web application using Zurb Foundation 4 with ASP.NET MVC 4:

I. Creating ASP.NET MVC Project:

  1. Launch Visual Studio 2012 (I’ve used Visual Studio Express 2012 for Web for this article). 
  2. Go to File menu and select New Project….
  3. In the New Project screen, under the templates section go to Visual C# and then to Web.
  4. Select the ASP.NET MVC 4 Web Application template.
    Zurb Foundation 4 with ASP.NET MVC 4 - 001
  5. In the project template screen select Basic and click OK.
    Zurb Foundation 4 with ASP.NET MVC 4 - 002
  6. The MVC 4 project and the solution are now created.

II. Removing the default UI framework:

  1. Go to the Solution Explorer; expand the Content folder and the Scripts folder. You will see lots of jquery.ui css files and couple of js files.
    Zurb Foundation 4 with ASP.NET MVC 4 - 003
  2. As we are planning to use Foundation as our UI framework, we have to remove jquery-ui libraries from the solution.
  3. To remove jquery-ui libraries, right-click the solution and select Manage NuGet Packages for Solution… from the menu.
  4. In the Manage NuGet Packages screen, select Installed packages and select jQuery UI package. Click the Manage button.
    Zurb Foundation 4 with ASP.NET MVC 4 - 004
  5. In the Select Projects pop-up screen un-check the solution and the project and click OK.
  6. jQuery-UI is now removed from the solution and the project.
    Zurb Foundation 4 with ASP.NET MVC 4 - 005
  7. Now open the BundleConfig.cs file under the folder App_Start. You can see the bundle configuration for jQuery UI is still there.
    Zurb Foundation 4 with ASP.NET MVC 4 - 009
  8. Remove the jQuery UI bundles.

III. Adding Zurb Foundation libraries:

  1. Now you have to add Zurb Foundation package form NuGet to the solution.
  2. To add Foundation package, right-click the solution and select Manage NuGet Packages for Solution… from the menu.
  3. In the Manage NuGet Packages screen, select Online and enter Zurb in the search box. You can see Zurb Foundation 4.3.1 for MVC4. Select it and click Install.
    Zurb Foundation 4 with ASP.NET MVC 4 - 006
  4. In the Select Project pop-up screen, make sure both the solution and project is selected and click OK.
    MVC4-Foundation4-007
  5. In the Solution Explorer, expand the Content and Scripts folder. You will see the Foundation libraries.
    Zurb Foundation 4 with ASP.NET MVC 4 - 008
  6. There are lots of foundation js files under the Scripts/foundation folder. These files are for the components like alerts, cookies, drop down, forms, etc… In this sample we’ll be adding all of them to BundleConfig.cs. (If you are planning to use the components, then you can go ahead and bundle all the js files. I would recommend to use only the components you are planning to use. Bundling un-used js files will be an extra overload to the web page and impacts the performance.)

  7. Add the below lines of code to the BundleConfig.cs under the App_Start folder.

    bundles.Add(new StyleBundle("~/Content/Foundation/css").Include(
                    "~/Content/foundation/foundation.css",
                    "~/Content/foundation/foundation.mvc.css",
                    "~/Content/foundation/normalize.css"));
    
    bundles.Add(new ScriptBundle("~/bundles/foundation").Include(
                    "~/Scripts/foundation/foundation.js",
                    "~/Scripts/foundation/foundation.*",
                    "~/Scripts/foundation/app.js"));
    
  8. The modified BundleConfig.cs file content looks like this.
    Zurb Foundation 4 with ASP.NET MVC 4 - 010
  9. Rebuild the solution.
  10. Now the project is ready to use the foundation layout.

IV. Using Foundation layout:

  1. Expand the Views >> Shared folder and the Home folder. You can see a foundation layout file (_Foundation.cshtml) and an index file (Foundation_Index.cshtml). These files were during the Foundation NuGet package installation. The below steps will guide you to use these foundation sample files.
    Zurb Foundation 4 with ASP.NET MVC 4 - 011
  2. Open the _ViewStart.cshtml file under the Views folder.
  3. Change the layout reference from _Layout.cshtml to _Foundation.cshtml.
    Zurb Foundation 4 with ASP.NET MVC 4 - 012
  4. Rename the view Foundation_Index.cshtml to Index.cshtml.
    MVC4-Foundation4-013
  5. Now, you have to create a controller. To create a controller, right-click the Controllers folder, select Add from the menu and click Controller….
  6. In the Add Controller screen, enter the name of the controller as HomeController. Under scaffolding options select Empty MVC Controller template and click Add.
    MVC4-Foundation4-015
  7. The controller is created and the solution is ready to build and execute.
    MVC4-Foundation4-016
  8. Build the solution and execute. This is your first Hello World MVC web application with foundation UI layout.
    MVC4-Foundation4
  9. The foundation layout is responsive and mobile friendly. To test the responsiveness, reduce the width of the browser. The elements will rearrange them self to accommodate the new size.
    MVC4-Foundation4-018

V. Proceed Further:

  1. If you are interested, you can download the sample code created with the above instructions from GitHub Repository (https://github.com/mytecbits/MVC4-Foundation4-Sample/).
  2. Try to use various components and features of Foundation. Follow the documents from Zurb web site (http://foundation.zurb.com/docs/).


1 thought on “Zurb Foundation 4 with ASP.NET MVC 4 – Step by Step”

Leave your thoughts...

This site uses Akismet to reduce spam. Learn how your comment data is processed.