category

home / developersection / category

Testing View in MVC
asp.net mvc 06-Oct-2011
Testing View in MVC

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

Model classes with Entity Framework in MVC
asp.net mvc 05-Oct-2011
Model classes with Entity Framework in MVC

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.

Calendar in MVC
asp.net mvc 05-Oct-2011
Calendar in MVC

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.

ListBox control in MVC
asp.net mvc 04-Oct-2011
ListBox control in MVC

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

DropDownList control in MVC
asp.net mvc 04-Oct-2011
DropDownList control in MVC

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

Checkbox control in MVC
asp.net mvc 03-Oct-2011
Checkbox control in MVC

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 MVC
asp.net mvc 03-Oct-2011
RadioButton control in MVC

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

Routing in ASP.NET MVC
asp.net mvc 01-Oct-2011
Routing in ASP.NET MVC

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 in ASP.NET MVC
asp.net mvc 01-Oct-2011
ViewData in ASP.NET MVC

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.

Data Binding in View using MVC
asp.net mvc 30-Sep-2011
Data Binding in View using MVC

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 in ASP.NET MVC
asp.net mvc 30-Sep-2011
View in ASP.NET MVC

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.

Model in ASP.NET MVC
asp.net mvc 30-Sep-2011
Model in ASP.NET MVC

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