Click here to Skip to main content
15,892,059 members
Articles / Web Development / ASP.NET
Tip/Trick

Customizing View Engines

Rate me:
Please Sign up or sign in to vote.
4.83/5 (4 votes)
6 Mar 2014CPOL1 min read 9.3K   4  
Customizing the view Engines (Razor View Engine) in MVC4 to optimize our App.

Introduction

Customizing the View Engines or adding our custom View Engines lets the search process during the loading of out webpage reduce by folds that somehow makes our app optimized.<code>

Why Really is it Needed?

When we forget to add a View page to any action method in the controller, we get an error like:

Image 1

Just imagine though some milliseconds but searching all these is worthless if we are using a specific View Engine, may it be Razor or Aspx in C# or VB.

Using the Code

It's very simple and easy. Let's peep into the codes.

Step 1: Go to the Global.asax

Global.asax is the heart of the application as it contains the App_start() method that starts our application.

C#
protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    WebApiConfig.Register(GlobalConfiguration.Configuration);
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
    AuthConfig.RegisterAuth();
}

Step 2: Add to the Application_Start() method

C#
protected void Application_Start()
{
    ViewEngines.Engines.Clear();//This clears all the Web form view engines.
}

After this, when we run we get an error page denoting:

Image 2

Step 3: After this Add

C#
protected void Application_Start()
{
    ViewEngines.Engines.Clear(); //This clears all the view engines as mentioned earlier
    ViewEngines.Engines.Add(new RazorViewEngine()); //This RazorViewEngine() is present in the System.Web.Mvc namespace
}

Here after this, we get an error page denoting:

Image 3

--This is because we have added only RazorViewEngine(), that has extension cshtml (for C#) and vbhtml (for VB).Just see the search has reduced by half.

Step 4: Now we create our own custom View Engine

--Add a class to App_Start folder (with any name that suits you). Then make the class inherit from RazorViewEngine.

C#
public class "your viewengine 
name":RazorViewEngine //This RazorViewEngine in present in the System.Web.Mvc namespace

--Add the following code into the class:

C#
ViewLocationFormats = new[]
                      {
                          "~/Views/{1}/{0}.cshtml",
                          "~/Views/Shared/{0}.cshtml"
                      };
MasterLocationFormats = new[]
                        {
                            "~/Views/{1}/{0}.cshtml",
                            "~/Views/Shared/{0}.cshtml"
                        };

We can similarly add for partialviews too (PartialViewLocationFormats = new[]...).

This is your custom ViewEngine before building and running your app. Don't forget to add:

C#
ViewEngines.Engines.Add(new your viewengine name());

This helps your search reduced by folds from 8 to 2. That is: now only 2 are searched.

Image 4

Conclusion

After removing the Webform Engines, Razor View Engine will be twice as fast with the Webform Engines.

Hope this helps beginners like me. :)

History

  • 6 March 2014 - First version.
  • 7 March 2014 - Formatting updates.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
-- There are no messages in this forum --