3

Is it possible to call normal ASPX pages with their normal life-cycle in an ASP.NET MVC 2 application? What about web controls and ajax.net toolkit?

Thank you!

ab_732
  • 3,639
  • 6
  • 45
  • 61

2 Answers2

3

You don't need to do anything. Simply create your MVC application and add a new web forms page. Thats it.

Adam Tuliper
  • 29,982
  • 4
  • 53
  • 71
  • This is the answer. Just created a new web form and added update panels and whatever i needed. Thanks for your help! – ab_732 Sep 29 '11 at 01:23
2

Yes.

Deploying ASP.NET MVC on ASP.NET 2.0

Integrating ASP.NET MVC 3 into existing upgraded ASP.NET 4 Web Forms applications

I recommend creating a WebForms project and using this NuGet package:

AddMvc3ToWebForms

rick schott
  • 21,012
  • 5
  • 52
  • 81