.Net
-
Feb- 2020 -22 February
MVC Life Cycle
Any web application has two main execution steps first understanding the request and depending on the type of the request…
Read More » -
22 February
string and StringBuilder
A string instance is immutable. Immutable means once we create a string object we cannot modify the value of the…
Read More » -
22 February
Generic in C#
In c#, generic is a type which is used to define a class,structure,interface or method with a placeholders (type parameters) to indicate that they can store…
Read More » -
22 February
How to use left join in Entity Framework
Before going to the topic let see what is Left join.A Left outer join is a join in which each…
Read More » -
22 February
Tempdata.Keep() and Tempdata.Peek()
Once “TempData” is read in the current request it’s not available in the subsequent request. If we want “TempData” to…
Read More » -
22 February
DataSet Vs DataReader
DataSet and DataReader are widely used to get/fetch the data from the database. DataReader is used to retrieve read-only and forward-only data from a…
Read More » -
15 February
CRUD Operation using Ajax Call in Asp.Net MVC
CRUD Operations in MVC This article is all about ASP.NET MVC CRUD operations using Ajax Call and Entity Data Model…
Read More » -
9 February
Data Annotations In ASP.NET MVC
Data Annotations are nothing but certain validations that we put in our models to validate the input from the user. ASP.NET…
Read More » -
9 February
What is Difference between Html.Partial and Html.RenderPartial in MVC?
Html.Partial returns a string, Html.RenderPartial returns void.– We can store the output of Html.Partial in a variable/able to return from function.– In Html.RenderPartial, we can’t…
Read More » -
9 February
Attribute Routing in ASP.NET MVC 5
Routing is how ASP.NET MVC matches a URI to an action. MVC 5 supports a new type of routing, called attribute routing.…
Read More »