Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MVC in .Net?

Status
Not open for further replies.

oaklanders

Technical User
Dec 9, 2007
38
I have done alot of J2EE especially working with MVC architecture.
I want to start learning .Net and was wondering if there was a specific name for MVC under .Net and how .Net implements MVC? What is equal to a Servlet in .Net? What is equal to a JavaBean in .Net?
 
MVC is MVC but in .Net MVC is not like MVC in Java. There are differen implementation of MVC for .Net. Like Mark said one is the MVC framework introduced in 3.5. Another are the MvP patterns introduced by Martin Fowler (which are now 2 patterns ).

There is nothing like a servlet in .Net allthough the codebehind comes closest.

A Javabean is is a class with gettes and setters and a default empty constructor that can be serialized. Well the same goes for a .Net class, but instead of a Javabean they call it a class ;-).

Christiaan Baes
Belgium

My Blog
 
there is also the monorail framework from castle. this model totally abandons the webform/postback model for a more pure html model.

I haven't used this framework before, but it's peeking my interest (and .net MVC) as the postback model becomes more and more of a pain:)

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top