Here are two cool enhancement in Razor v2! Enjoy reading!!
1. No need to use “@href” or “@url.content” anymore for resolving the Url. We can simply use “~” as we use it in ASP.NET development
Example:
< script src=”@Url.Content(“~/Scripts/jGrowl.js”)”>
can be just simply as below
< script src=”~/Scripts/jGrowl.js”>
Note: <space> has been added after “<” in < script> for the perfect view
2. Conditional attributes:
Please refer: http://vibrantcode.com/blog/2012/4/10/whats-new-in-razor-v2.html/