1

同じVisualStudioソリューション内に2つのプロジェクトがあります。
1つはASP.NETMVCプロジェクトで、もう1つはASP.NET Webアプリケーション(Webフォーム)です。

Webアプリケーション全体をMVCで書き直すのではなく、MVCからASP.NETWebアプリケーションを呼び出したい。

4

1 に答える 1

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" />
于 2012-05-01T17:07:45.287 に答える