Abhi
Abhi

Reputation: 5557

Moving the App from ASP.NET to ASP.NET MVC

I am having a aomplex and well-running application in ASP.NET that i have created about 2 years ago, now i want to create the same in ASP.NET MVC 2/3 to improve efficiency, because ASP.NET make use of ViewState a lot which eats lot of bytes. And I had also make use of ViewState a lot in that project. At a time on an estimation about 500 people give Quiz.

Now I want to mainly focus on client-side scripting using HTML5, CSS3, jQuery and ASP.NET MVC. If you have used above technologies, than can you please suggest me that whether doing this is possible or not with increased efficiency in such project or application.

Please answer me your suggestion so that i can decide whether to move towards MVC or Silverlight.

Upvotes: 1

Views: 165

Answers (3)

Simon Halsey
Simon Halsey

Reputation: 5469

Your time would be better spent tweaking your current app to reduce your reliance on ViewState.

Your existing app has numerous hours of bug fixes & user testing in it - 2 years worth in fact. A rewrite would throw all that away & introduce lots of new errors.

Upvotes: 1

John Farrell
John Farrell

Reputation: 24754

Rewriting an application with only 500 users to save on some viewstate bytes seems a very inefficient use of time.

Upvotes: 0

Victor Haydin
Victor Haydin

Reputation: 3548

Yes, it is possible, ASP.Net MVC + jQuery is very simple and powerful platform. We've done several sophisticated web-applications on that platform and that was very easy and interesting.

Upvotes: 1

Related Questions