home / developersection / category
In this article, I am going to demonstrates how to test the view returned by a controller action. You can know how to test the view returned by a c
In this article, I am explaining how to use ASP.NET MVC with the Entity Framework. You learn how to use the Entity Wizard to create an ADO.NET Entity Data Model.
In this article I will explain you, how to use jquery calendar control in ASP.NET MVC. Here I will also describe that how to pass selected date of calendar to controller.
Here In this article, I am explaining how to add items in ListBox and how to get selected items from ListBox in ASP.NET MVC Create a property in a
In this article, I am explaining how to add items in DropDownList and how to get selected item from DropDownList in ASP.NET MVC. Create a property in
The Checkbox control in MVCHere, In this Article, We are going to explain how to create checkbox control and how to get the selected checkboxes valu
RadioButton control in MVCHere I am explaining how to create RadioButton Control in MVC and get the selected radio button reference. Here is an Ind
A route is a URL pattern that is mapped to a handler. The handler can be a physical file, such as an .aspx file in a Web Forms application. Routing module is responsible for mapping incoming browser requests to particular MVC controller actions.
Viewdata is the collection of state that is passed to a view. A view should get all the information it needs from the viewdata. It contains key/value pairs as well as some special properties, such as Model.
In this article I am going to explain how to dynamically bind View data in Model and retrieve data from Model in View through Controller. Before buil
View is an ASPX page without having a code behind file. All page specific HTML generation and formatting can be done inside view. We can use inline code (server tags) to develop dynamic pages.
MVC model is basically a C# or VB.NET class. A model is accessible by both controller and view. A model can be used to pass data from controller to vi