1

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

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

4

1 回答 1

2

You could use an anchor:

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

or an iframe:

<iframe src="http://address_of_the_application_that_you_dont_want_to_rewrite" />
于 2012-05-01T17:07:45.287 回答