Click here to Skip to main content
15,912,578 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I implemented web app in ASP.NET Web application.Now we want to change front-end(GUI)
by the design implemented in ASP.NET MVC Web Application.
1) Is it possible?
2) which much difficulties I will faced to do this?
or
3) Is it easy to make design in ASP.NET Web application?

4)Is there need to change the backend code for this?
Posted

1 solution

You'll need to re-write the whole project. How much of the back-end code is reusable depends on how it has been architected. There is no easy webforms to mvc conversion, so you'll need to decide if the value you gained from conversion is greater than the time spent. If there are issues with your webforms site it might be better just spending time to resolve them.
 
Share this answer
 
v2
Comments
Member 11922776 4-Sep-15 7:05am    
thank you sir.
Member 11922776 4-Sep-15 8:57am    
Sir I go through following site/blog they mixing mvc and webforms. so is this possible?

https://www.simple-talk.com/dotnet/asp.net/mixing-web-forms-and-asp.net-mvc/

http://www.hanselman.com/blog/IntegratingASPNETMVC3IntoExistingUpgradedASPNET4WebFormsApplications.aspx
F-ES Sitecore 4-Sep-15 9:06am    
You can have both types in a single project, but you're unlikely to get any real value from that. If you have completely new functionality to implement you could implement new pages as MVC, but how will you handle shared layouts, global code etc etc etc. For anything but the most basic of sites it's not likely to help.

It's also just bad architecture. Have a webforms site or an MVC site, there is zero value in having a mix of both.
Member 11922776 5-Sep-15 1:35am    
ok i got it. thank you once again.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900