Year End Sale: Get Upto 40% OFF on Live Training! Offer Ending in
D
H
M
S
Get Now
Custom Razor View Engine for C# and VB

Custom Razor View Engine for C# and VB

05 Mar 2024
Advanced
148K Views
3 min read
Learn with an interactive course and practical hands-on labs

ASP.NET MVC with Web API Foundations Course - Free

You should be happy to know, Asp.Net MVC is an open source and highly extensible framework. You can customize it according to your need. As you read my previous article Removing the Web Form View Engine for better performance of Razor View Engine from your Asp.Net MVC Razor application. In this article, you will learn how can you customize the Razor View engine for C# and VB language.

Removing All the View Engines & registering the Razor Engine

protected void Application_Start() 
{ 
 //Remove All View Engine including Webform and Razor
 ViewEngines.Engines.Clear();
 //Register Razor View Engine
 ViewEngines.Engines.Add(new RazorViewEngine());
 //Other code is removed for clarity
} 

After removing the Web Form and other View engine as you noticed that Razor View engine looks up the C# and VB views as shown below.

As you know MVC is highly extensible hence you can completely replace the Razor view engine with a new custom razor engine. by doing so, this will slightly improve your application performance. If your MVC application is using only C# language, there is no need to looks up the .vbhtml views and same for VB language.

Custom C# Razor View Engine

public class CSharpRazorViewEngine : RazorViewEngine
{
 public CSharpRazorViewEngine()
 {
 AreaViewLocationFormats = new[]
 {
 "~/Areas/{2}/Views/{1}/{0}.cshtml",
 "~/Areas/{2}/Views/Shared/{0}.cshtml"
 };
 AreaMasterLocationFormats = new[]
 {
 "~/Areas/{2}/Views/{1}/{0}.cshtml",
 "~/Areas/{2}/Views/Shared/{0}.cshtml"
 };
 AreaPartialViewLocationFormats = new[]
 {
 "~/Areas/{2}/Views/{1}/{0}.cshtml",
 "~/Areas/{2}/Views/Shared/{0}.cshtml"
 };
 ViewLocationFormats = new[]
 {
 "~/Views/{1}/{0}.cshtml",
 "~/Views/Shared/{0}.cshtml"
 };
 MasterLocationFormats = new[]
 {
 "~/Views/{1}/{0}.cshtml",
 "~/Views/Shared/{0}.cshtml"
 };
 PartialViewLocationFormats = new[]
 {
 "~/Views/{1}/{0}.cshtml",
 "~/Views/Shared/{0}.cshtml"
 };
 }
} 

Regisering the C# Razor View Engine

protected void Application_Start() 
{ 
 //Remove All View Engine including Webform and Razor
 ViewEngines.Engines.Clear();
 //Register C# Razor View Engine
 ViewEngines.Engines.Add(new CSharpRazorViewEngine());
 //Other code is removed for clarity
} 

Custom VB Razor View Engine

Imports System.Web.Mvc
Public Class VBRazorViewEngine Inherits RazorViewEngine
 Public Sub New()
 AreaViewLocationFormats = {
 "~/Areas/{2}/Views/{1}/{0}.vbhtml", 
 "~/Areas/{2}/Views/Shared/{0}.vbhtml"
 }
 AreaMasterLocationFormats = {
 "~/Areas/{2}/Views/{1}/{0}.vbhtml", 
 "~/Areas/{2}/Views/Shared/{0}.vbhtml"
 }
 AreaPartialViewLocationFormats = {
 "~/Areas/{2}/Views/{1}/{0}.vbhtml", 
 "~/Areas/{2}/Views/Shared/{0}.vbhtml"
 }
 ViewLocationFormats = {
 "~/Views/{1}/{0}.vbhtml", 
 "~/Views/Shared/{0}.vbhtml"
 }
 MasterLocationFormats = {
 "~/Views/{1}/{0}.vbhtml", 
 "~/Views/Shared/{0}.vbhtml"
 }
 PartialViewLocationFormats = {
 "~/Views/{1}/{0}.vbhtml", 
 "~/Views/Shared/{0}.vbhtml"
 }
 End Sub
End Class

Regisering the VB Razor View Engine

Sub Application_Start()

 ViewEngines.Engines.Clear();
 ViewEngines.Engines.Add(new VBRazorViewEngine());

End Sub

Note

  1. Use one of the approach when you are sure that you will use only either C# language or VB Language. It will be helpful to you.

  2. If you are using both type of views (cshtml and vbhtml), don't implement this.

What do you think?

I hope you will enjoy the tricks while programming with MVC Razor. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at ScholarHat)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this