by Yogesh | Jun 19, 2016 | Asp .net MVC
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...
by Yogesh | Jun 19, 2016 | C#
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...
by Yogesh | Jun 17, 2016 | Asp .net MVC
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...
by Yogesh | Jun 17, 2016 | CSS3 tutorial
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...
by Yogesh | Jun 16, 2016 | SQL Server
Generally we face a problem when we want to upgrade our sql server management studio version , all the databases are lost. To take all database backup one by one is completely irritating. To overcome this irritating job , our sql provides a great solution to take all...