Friday, June 19, 2009

Input Validation in ASP.NET MVC

Here, you can find how to arrange a data entry page using the  ASP.NET MVC Framework.

The ASP.NET MVC Framework is a Model-view-controller framework which Microsoft added to ASP.NET. It allows software developers to build a Web application as a composition of three roles: Model, View and Controller. A Model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the table. A Controller handles interactions and updates the model to reflect a change in state of the application. A View extracts necessary information from a model and renders a user interface to display that.

The Official Microsoft ASP.NET MVC Site

No comments:

Post a Comment