by Yogesh | Apr 22, 2015 | Asp .net MVC, C#
New way of Object Initialization: C# 3.0 introduces new way to initialize the objects. Object initialization is used to assign values to accessible fields of an object at the time of creation of Object without invoke the constructor. Old Approrach public...
by Yogesh | Apr 21, 2015 | Asp .net MVC
Auto-implemented properties is the new feature of C# 3.0 new feature to create property-declaration more concise. What is Property: Property is a way to initialize the private member variables of class. We use get and set accessor to add data into variables...
by Yogesh | Apr 18, 2015 | Asp .net MVC
What is Routing: Routes maps controllers names and their actions names. It is used to create user friendly URL.To setup startup page just like web forms. The routing system lets you create any pattern of URLs you desire and express them in a clear and concise manner....
by Yogesh | Apr 14, 2015 | SQL Server
Stored Procedure: Set of logical group of SQL statements which are grouped to perform a specific task. Benefits of Using the Stored Procedure Reduces the amount of information sent to the database server. Compilation step is required only once when the stored...
by Yogesh | Apr 13, 2015 | ASP.NET Web Forms
In This Video tutorial I demonstrate that how we can edit content in grid view itself. GridViewEdit.aspx ...