Click here to Skip to main content
15,886,830 members
Articles / Web Development / HTML

Write Less Do More with ASP.NET MVC Templates

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
3 Jun 2014CPOL2 min read 7.2K   5  
Write less do more with ASP.NET MVC templates

ASP.NET MVC 5 has a host of awesome features that can be leveraged to make a good and maintainable website. One of these features is the templating system.
MVC offers two types of templates for views, namely:

  • Display Templates: Used for displaying data
  • Editor templates: Used for creating an editor for data

NinjaWPF and Silverlight developers users will find a lot of similarity in the MVC templating system.Ninja

The MVC templating system uses DataType as an identifier to select the appropriate template for use. In order to use the templates, we have to use the following syntax so that MVC can invoke the template selection.

For Display templates:

HTML
@Html.DisplayFor(m=> m.Myproperty)

where m can be the model for the view.

For Editor Templates:

HTML
@Html.EditorFor(m=> m.Myproperty)

where m can be the model for the view.

For demo, we will create/modify the editor template for data type String. In this demo, I have purposefully added some CSS to make the Display and Editor look different.

Display templates and Editor templates are saved in specific folders inside the Views\\Shared\\<folders>.

image_thumb

From the above figure, you can understand that we have created a display as well as an editor template for the data type String.

For Display Template, the file “String.cshtml” has:

XML
@model String

<!--Using some bootstrap CSS classes to make it look distinct-->

<div class="panel panel-primary">
    <div class="panel-heading">
        <h3 class="panel-title">Display Template</h3>
    </div>
    <div class="panel-body">
        @ViewData.TemplateInfo.FormattedModelValue
    </div>
</div>

For Editor Template, the file “String.cshtml” has:

HTML
@model String

<!--Using some bootstrap CSS classes to make it look distinct-->

<div class="panel panel-success">
    <div class="panel-heading">
        <h3 class="panel-title">Editor Template</h3>
    </div>
    <div class="panel-body">
        @Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue)
    </div>
</div>

The job is almost done, we just have to use these templates in one of the views, I will create a separate View/Controller (TemplateDemoController) to keep this tutorial simple.

I have created a “Person” model with a string property “Name” and passed it as the model for my view.

C#
public class TemplateDemoController : Controller
{
    // GET: TemplateDemo
    public ActionResult Index()
    {
        return View(new Person() {Name = "Some Name"});
    }
}

And I will use the Displayfor and EditorFor helpers in my view to invoke template selection while view rendering.

HTML
@model BootswatchDemo.Models.Person

@{
    ViewBag.Title = "Template Demo";
}

<h2>@ViewBag.Title</h2>

<div>@Html.DisplayFor(m => m.Name)</div>

<div>@Html.EditorFor(m => m.Name)</div>

After this, compile and run the website and navigate to the respective view to see the result.

image

Ninja Using this feature, people will save a lot of time by creating templates for custom classes instead of writing HTML in every View.Ninja

I hope this post might have helped you to understand the concept of templates in MVC and will help you in your projects/assignments. If you like the article, please share or comment. Your suggestions are welcome.

Bye for now, I will post more articles soon with some more interesting stuff as my journey of exploring ASP.NET MVC continues.

Source code: https://github.com/ankeshdave/Blogs/tree/master/MVC%20Templates%20Demo

Filed under: Tutorial

Tagged: ASP.NET MVC, Bootstrap, C#, Razor, Templates

Image 7 Image 8

License

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --