I am from J2EE background and recently started looking into .Net. I am wondering if .Net have Struts, JSF like MVC framework available?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
.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.