ASP.NET Razor

This is an old revision of this page, as edited by Mrmagoo2006 (talk | contribs) at 06:36, 6 December 2011 (replace external link with link to wikipedia article). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Razor is an ASP.NET programming syntax used to create dynamic web pages with the C# or Visual Basic programming languages. Razor was in development in June 2010[1] and was released for Microsoft Visual Studio 2010 in January 2011.[2] Razor is a simple-syntax view engine and was released as part of ASP.NET MVC 3 and the Microsoft WebMatrix tool set.[2]

Razor View Engine Information
Developer(s)Microsoft
Initial releaseJanuary 2011
Stable release
ASP.NET MVC 3 / 11 January 2011; 14 years ago (2011-01-11)
Written inC#, VB, HTML
Operating systemMicrosoft Windows
TypeWeb application framework
LicenseProprietary
WebsiteThe Official Microsoft ASP.NET Site
Razor View Engine File Format
Filename extension
.CSHTML or .VBHTML
Internet media type
text/html
Developed byMicrosoft

Introduction

The Razor syntax is a template markup syntax that enables the programmer to use an HTML construction workflow and is based on the C# programming language. Instead of using the ASP.NET .ASPX markup syntax using <%= %> blocks to indicate code blocks the Razor syntax starts of a code block with Razor using a @ character and does not require explicit closing of the code-block.

Advantages of Razor

The idea of Razor was to create an optimized syntax for HTML generation using a code-focused templating approach using a minimization of transition between HTML and code.[3] The design reduces the number of characters and keystrokes required and enables a more fluid coding workflow by not having to explicitly denote server blocks within the HTML code.[1] Other advantages that have been noted[4]:

Criticism

Using the Razor syntax could be awkward for programmers used to prior markup syntax and although it does cause complex views to be more readable there is minimum editing advantage for smaller views. The current ASP.NET MVC 3 does not yet support syntax highlight for Razor views.[5]

References