Creating ASP.NET MVC Web Application With Custom Bootstrap Theme VS 2012, VS 2013 And 2015

Introduction

In this article, I will show how to create an ASP.NET MVC web application with a custom bootstrap theme/layout. For this demo, I am using Visual Studio 2012, ASP.NET MVC 4, a custom bootstrap theme (Bootstrap Business Casual).

Background

Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web. It provides a default layout, fonts, and JavaScript widgets like accordion, carousel, and many more. You can either take the default boostrap.css or you can use custom bootstrap themes available online to create your ASP.NET MVC Bootstrap Web application. In this article, I will show how you can easily change the default ASP.NET MVC layout and apply custom bootstrap theme/layout to your MVC web application.

Getting Started

This tutorial can be used for VS 2012 and VS 2013 and VS 2015, for creating an ASP.NET MVC web application with custom bootstrap theme.

Step 1 

Download the bootstrap theme you intend to implement in you ASP.NET MVC application and keep it ready. (You may need to extract the files from zip folder in to a separate folder).

For this demo I am using a custom bootstrap theme - Business Casual. I have downloaded the theme from the following website https://startbootstrap.com/template-overviews/business-casual/.

Step 2 

Create an ASP.NET MVC web application. Follow the steps mentioned below.
  • Open VS 2012 / VS 2013 / VS 2015 and create new project. Select web – ASP.NET MVC 4 web application.

  • Enter project name –“ASPNETMVC_BootstrapCustomThemeDemo”. Click OK.

  • Select Internet template (VS 2012 / VS 2013) and click OK. Select ‘MVC’ for VS 2015.

  • The custom bootstrap I am about to implement has a Blog menu and a Blog.html page. So, I have created a Blog.cshtml View and an Action for the same in HomeController. Also, added the blog menu in _layout.cshtml. (see Fig.1)

  • After the project is created, just press F5 to run the application and in the web browser you would find the default ASP.NET MVC application template displayed.(see Fig.1) 



Note

For VS 2015, there is a slight difference, Every ASP.NET MVC web application project comes with the default bootstrap theme installed (see Fig.1) and the ASP.NET MVC template is a Bootstrap template – jumbotron (see Fig.2).
 
You would need to first uninstall current / default Bootstrap version and jQuery package using NuGet Package Manager and then follow from step III.



implement

Step 3

To implement the Custom Bootstrap them in your ASP.NET MVC Web application.
 
  • As we are going to implement the bootstrap CSS frame work, we do not need this Site.css. So, the first thing you need to do is open the Site.css file and delete all the content from this file (See Fig.4).

    Then, save the file and close it. We would need this file to override the bootstrap CCS elements.

    elements

  • Next, open the Custom theme folder (startbootstrap-business-casual-gh-pages), you would see few files and folders – you need to copy the CSS, fonts, and img folder to the MVC application Content folder ( See Fig.5)

    elements

  • Next, open the js folder inside the Custom theme folder copy all the JavaScript files from this folder to the MVC application Scripts folder ( see Fig 6)

    elements

  • Next, go to Visual Studio and on the top of Solution explorer bar, Click on “Show All files” option to view the files and folders we copied to the project folders ( see Fig. 7)



  • Next, to make files and folders part of the project - Right click on each of them and select option “Include in Project” (see Fig.8) 

    elements

Step 4

To configure the ASP.NET MVC web application with the custom bootstrap theme:
  • In the Solution Explorer, Open the BundleConfig.cs file under App_Start folder, and add the following to the bundle configs (see Fig. 9)
    1. bundles.Add(new ScriptBundle("~/bundles/jquery").Include(  
    2.     "~/Scripts/jquery.js"));  
    3. bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(  
    4.     "~/Scripts/bootstrap.js"));  
    5. bundles.Add(new StyleBundle("~/Content/css")  
    6.     .Include("~/Content/site.css")  
    7.     .Include("~/Content/bootstrap.css"));  
    bootstrap
  • Next open the index.html file from custom theme folder and update the _layout.cshtml view of the MVC application. Note: Almost all custom themes are designed with a generic layout, so much of the elements / components are repeated in each page, as a developer for MVC we need to separate out the code that is repeated and would go in layout page and the code that would go in the index page.

  • Copy the head section from the index.html page to the _layout.cshtml and make the changes ( see Fig. 10)

    layout

  • Next Replace the Header tag section inside body tag in _layout.cshtml with the nav tag from index.html (see below). Also make the following changes to the relative path of the images and add the @html.ActionLink() for each of the views, also do the highlighted changes (see Fig. 11)

    layout

  • Next scroll down and replace the footer Section inside the body tag in _layout.cshtml with footer tag from index.html (see Fig. 12) and save the changes.

    layout

  • Next setting up the Index.cshtml view – for this copy only the container section below nav-bar and paste it into Index.cshtml (see Fig. 13). Note: we would not copy the nav-bar the footer section as it is already present in our _layout.cshtml. Also make sure you reference the _layout.cshtml at the top (see below), as it contains the nav-bar and footer details

    layout

  • As the Index.cshtml is having Carousel, we need to add the jquery.js and bootstrap.js and also the jquery script for Carousel (see Fig. 14) at the bottom of the index.cshtml view

    layout

  • Next setting up the About.cshtml view – for this open the about.html file, copy only the container section below nav-bar and paste it into About.cshtml (see Fig. 15). Note: we would not copy the nav-bar the footer section as it is already present in our _layout.cshtml. Also make sure you reference the _layout.cshtml at the top (see below), as it contains the nav-bar and footer details

    layout

  • Next setting up the Contact.cshtml view – for this open the contact.html file, copy only the container section below nav-bar and paste it into Contact.cshtml (see Fig. 16). Note: we would not copy the nav-bar the footer section as that is already present in our _layout.cshtml. Also make sure you reference the _layout.cshtml at the top (see below), as it contains the nav-bar and footer details,

    layout

  • Finally setting up the Blog.cshtml view – for this open the blog.html file, copy only the container section below nav-bar and paste it into Blog.cshtml (see Fig. 17). Note: we would not copy the nav-bar the footer section as that is already present in our _layout.cshtml. Also make sure you reference the _layout.cshtml at the top (see below), as it contains the nav-bar and footer details,

    layout

  • Close all the .html files and Save all your work. Now , just press F5 to run the application and in the web browser there you go, you will see the ASP.NET MVC application displayed with the custom bootstrap template we implemented ( see Fig. 18),

    layout
Few points to note
  • layout.cshtml will contain the common elements – like the header (logo), Menu and footer- in case of dynamic components make sure to reference the jquery.js and boostrap.js file at the bottom of the page and if required some jQuery script. 
  • Make sure you reference the image and the CSS links properly.
This completes the steps required for creating an ASP.NET MVC web application with a custom bootstrap theme. Thanks for reading.


Similar Articles