Project Description
Quick and Dirty Helpers for ASP.NET MVC that boosts productivity by help typing less code for common HTML controls like Link, Image, Input and more.
Sample:
To link an external stylsheet to your HTML document, here is the simple and elegant way to do this.
@Helpers.Stylesheet("/content/site.css")
This will be finally rendered as
<link href="/content/site.css" rel="stylesheet" type="text/css" />
These helpers make your code more readable and helps reduce development time.