Leveraging Validator Toolkit for ASP.NET MVC to Build Client and Server-Side Form Validation

After having gained an incredible amount of popularity as one of the finest web development frameworks, Asp.net is now available with a validator toolkit that enables the developers to build both, client side and server-side form validation. The MVC programming model available for Asp.net has made its mark in the world of Asp.net development. In today’s blog, I’ll be covering details about the validator toolkit that’s available for Asp.net developers. What’s the Validator Toolkit for Asp.net MVC used for? While

» Read more

MVC- Model–View–Controller

I have attended the training session on MVC with Logiciel at Ludhiana on 3rd May 2011.  It was a good session. Session Detail: Introduction and Overview Demo Project (Lab) Question/Answer There is lot of detailed stuff available over the internet. So just sharing you very brief notes… MVC Pre-requisites Visual Web Developer 2008 Express Edition SP1 http://www.microsoft.com/express/download/ SQL Server 2008 Express Edition http://www.microsoft.com/express/sql/download/ Micorosft.NET Framework 3.5 SP1 http://msdn.microsoft.com/en-us/netframework/ Microsoft ASP.NET MVC http://www.asp.net/mvc/ MVC can be defined as an architectural pattern

» Read more

MVC- Model–View–Controller

Model–View–Controller (MVC) is a software architecture,currently considered an architectural pattern used in software engineering. The pattern isolates “domain logic” (the application logic for the user) from the user interface (input and presentation), permitting independent development, testing and maintenance of each (separation of concerns). The model manages the behavior and data of the application domain, responds to requests for information about its state (usually from the view), and responds to instructions to change state (usually from the controller). In event-driven systems,

» Read more