Archive for the ‘MVC Framework’ Category

Links For August 21st 2008

Friday, August 22nd, 2008

Links For August 21st 2008

.Net:
C# Inline Methods and Optimization
Questions on application domains, application pools and unhandled exceptions
Did you know… How to debug your optimized code?
ASP.NET Generated Image Control
ASP.Net Load Testing and Optimization Toolkit - So you want to be a hero
ASP.Net MVC Videos
Rotor 2.0 referance book

LINQ:
Probably The Most Powerful LINQ Operator: SelectMany

Web:
jQuery Timers
jQuery: Animation for Dummies
A Horizontal Layout Navigation Web Page Using jQuery
15 Quick Ways to Shrink Page Load Times
Speed Up Your Web Pages By PreLoading, Caching…
B2B Communication and Securing them

Silverlight:
Silverlight CMS Demo
Silverlight Particle Generator
Silverlight custom fonts - How to and issues

Database:
Introducing Table-Valued Parameters - Part 1

Other:
25 Must-Have Thumb Drive Apps for Geeks

Podcasts:
Velocity Podcast

Links For August 21st 2008

ASP.Net MVC Framework Part - 1

Monday, December 10th, 2007

ASP.Net MVC Framework Part - 1

Now that ‘ASP.NET 3.5 Extensions Preview‘ is released, Iam planning to play a bit with the new ASP.Net MVC Framework. In the coming couple of weeks I will be looking into this new Framework and post some articles related to it. For this post I will just post some basics of MVC.

MVC - Model View Controller.

Using the MVC Framework, an application is divided into 3 components:
Model
View
Controller.

Model
Model is typically a database for most applications.

View
View is the UI.

Controller
Controller is the central component between Model and View. It is reponsible for manipulating Model, picking u the View to render.

You can download ‘ASP.NET 3.5 Extensions Preview‘ from here.

The system requirements are:
Operating Systems: Windows Server 2003; Windows Vista; Windows XP
.NET Framework 3.5
Visual Studio 2008 or Visual Web Developer 2008 Express Edition

ASP.Net MVC Framework Part - 1