What is Razor View Engine?
Razor is the first major update to render HTML in MVC 3. Razor was designed specifically for view engine syntax. Main focus of this would be to simplify and code-focused templating for HTML generation. Below is the sample of using Razor:
@model MvcMusicStore.Models.Customer @{ViewBag.Title = "Get Customers";} <div class="cust"> <h3><em>@Model.CustomerName</em> </h3>
Comments
Post a Comment