Custom Html Helper

  In this post I will explain how to create How to create our own HTML controll in our MVC 4 application.
   
MVC have some pre define html helper.If y want to render image in you application every time use the following line in every view
<img src="@Model.ImageSource", alt ="@Model.Imagename",
title ="Model.ImageDescription" />
 
Now see how to avoid how to  write lengthy code using Custom html helper.