Archive for the 'ASP.NET' Category

ASP.NET MVC Example – Part 1

I am starting an example on ASP.NET MVC; I am planning to have 3 parts of this example so that it will be easy for understanding. Structure of the example: Part – 1: Creating basic MVC project Part – 2: Creating Business Logic layer Part – 3: Interacting with Model     To create an [...]

ASP.NET MVC

ASP.NET is providing a powerful component MVC in ASP.NET3.5, MVC stands for model view controller and it is a design pattern used for applications, it is very flexible pattern using which you can make very flexible and independent components.   Basically in ASP.NET MVC applications we have a controller which will respond to a request, [...]

What’s New in ASP.NET 3.5 AJAX

ASP.NET 3.5 AJAX giving us some very useful controls, using which you can implement AJAX very easily. Below are the some of the controls l       ScriptManager •          Main control for AJAX implementation, •          Identifies the scripts sent to browser (debug / release) •          EnablePartialRendering property will be used to enable partial page updates (needs at [...]