在同一个Project Solution中从ASP.NET MVC应用程序调用ASP.NET webform页面

时间:2012-05-01 17:03:09

标签: asp.net-mvc

我在同一个Visual Studio解决方案中有2个项目 一个是ASP.NET MVC项目,另一个是ASP.NET Web应用程序(Webforms)。

我想从MVC调用ASP.NET Web应用程序,而不必在MVC中重写整个Web应用程序。

1 个答案:

答案 0 :(得分:2)

您可以使用锚点:

<a href="http://address_of_the_application_that_you_dont_want_to_rewrite">
    Go to the WebForms application
</a>

或iframe:

<iframe src="http://address_of_the_application_that_you_dont_want_to_rewrite" />