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
Option2:Helper also provides the option to pass lamda expression to specify a model property for rendering using strongly typed helpers.
Replacing the string will lamda expression provides no of benefits
- IntelliSense
- Compile time error checking
- Easier refactoring