Strongly Typed Helper:-

Asp.MVC provides a couple of option to pass the properties to the html helper methods.

Option 1: Passing string literals to pull values from view data

            
@Html.TextBox("Title")
            
            

Option2:Helper also provides the option to pass lamda expression to specify a model property for rendering using strongly typed helpers.

            
@model HTMLHelperExample.Models.Employee
@Html.TextBoxFor(m => m.EmpName )
            
            

Replacing the string will lamda expression provides no of benefits

  1. IntelliSense
  2. Compile time error checking
  3. Easier refactoring