![strongly typed html helpers in asp.net mvc razor](https://yogeshdotnet.com/wp-content/uploads/aspnet-mvc-1.jpg)
strongly typed html helpers in asp.net mvc razor
Strongly typed html helpers are introduced in MVC 2. In this kind of helpers we can generate html markup or view using model properties and lambda expression. These methods use a "Html.HelperNameFor()” naming convention. for example we have created model property like...
![automapper in Csharp with example](https://yogeshdotnet.com/wp-content/uploads/c-sharp-tutorial-yogeshdotnet.jpg)
automapper in Csharp with example
AutoMapper in C# AutoMapper is utility package provided by the Microsoft net framework. Automapper provides mapping between one class object to another class object. In simple words assigning properties values of one class into another class is called automapping. You...
![Inline HtmlHelpers in asp.net MVC 5](https://yogeshdotnet.com/wp-content/uploads/aspnet-mvc-1.jpg)
Inline HtmlHelpers in asp.net MVC 5
The @helper syntax within Razor enables you to easily create re-usable helper methods that can encapsulate output functionality within your view templates. They enable better code reuse, and can also facilitate more readable code. Example1 : step1. Create Controller...
![CSS3 Introduction and Selectors](https://yogeshdotnet.com/wp-content/uploads/CSS3.png)
CSS3 Introduction and Selectors
CSS3 is based on CSS 2.1 specification and is completely backward compatible with CSS2. The old specification of CSS2.1 was becoming too large and complex to update as one unit, hence development of CSS3 specification is split up into Modules. Modules can evolve...