Radu D
Radu D

Reputation: 3555

ASP.MVC reuse ASP.NET web form

I have a custom .aspx web page that I use for browsing files on server. Can I reuse that in MVC? Is there an easy way of doing this? ... or I have to rewrite everithing from scratch. I am prety new to mvc and the page use ajax for refreshing.

Thanks, Radu

Upvotes: 1

Views: 319

Answers (1)

Victor Haydin
Victor Haydin

Reputation: 3548

You have to rewrite existing pages from scratch. MVC uses completely different approach then WebForms. You can use both MVC and WebForms pages at one project, when upgrading, but can't use both approaches at one page.

Upvotes: 1

Related Questions