如何在 mvc 5 中显示外部网页?
How to display external web page in mvc 5?
我想在我的 mvc 视图中显示另一个网页。
谁能帮我解决这个问题?我尝试使用 iframe 但我无法成功。
<object type="text/html" data="External_URL" width="500px" height="500px">
</object>
注意:将 External_URL 替换为您的 url
您可以在 HTML5 中使用 <iframe>
或 <embed>
或 <object>
标签在您的应用程序中显示第三个其他网站 URL。
示例:
<iframe class="embed-responsive-item" src="http://modernpathshala.com" width="600" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
我想在我的 mvc 视图中显示另一个网页。
谁能帮我解决这个问题?我尝试使用 iframe 但我无法成功。
<object type="text/html" data="External_URL" width="500px" height="500px">
</object>
注意:将 External_URL 替换为您的 url
您可以在 HTML5 中使用 <iframe>
或 <embed>
或 <object>
标签在您的应用程序中显示第三个其他网站 URL。
示例:
<iframe class="embed-responsive-item" src="http://modernpathshala.com" width="600" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>