tags:

views:

83

answers:

2

I am from J2EE background and recently started looking into .Net. I am wondering if .Net have Struts, JSF like MVC framework available?

+2  A: 

.NET does have the MVC framework which I think you'll find very comparable to struts.

.NET MVC is really more like the Ruby on Rails framework than struts, but you should find it pretty easy to pick up if you know struts as well.

In struts you have actions, in .NET MVC you have controllers which serve roughly the same purpose - think multiple related struts actions in a single class, with each action being a method on the controller class. You also have master pages which correspond roughly to tiles in struts.

Eric Petroelje
Wow I never knew ASP.net tries to fork RoR.
jpartogi
Eric Petroelje
+1  A: 

Check out the ASP.Net MVC framework, somewhat similar to struts

JonoW