Diamonds is an ERP based on windows forms, I’m going to redevelop it using web technologies rather than Windows Forms ..
but now I need to decide which is best for this, the ASP.NET webforms (as i think) is easier to (design) i mean here the UI, but the mvc has simpler html output, and some other features …
can you help me decide which technology to use and why ?
I’m using C#,
Cheers
I think both technologies can get a bit complicated after getting past any of the basics. Here are some brief opinions that I gathered while having to implement a project that must live in both MVC and WebForms hosts.
WebForms Positives:
WebForms Negatives:
MVC Positives:
MVC Negatives:
Personally, I’m an MVC fan because of the control, flexibility, and transparent dependency injection support. Perhaps you should do a small pilot with both technologies to see which one you prefer. Good luck and have fun!