Web浏览器位于Asp.net mvc网站内

时间:2014-05-22 07:24:43

标签: asp.net-mvc browser

我有一个asp.net mvc网站,在页面内,我希望有一个WebBrowser来浏览其他网站。

有可能吗?或至少在不离开我的页面的情况下显示单个外部网页...

如果是,最好的方法是什么?

1 个答案:

答案 0 :(得分:0)

ASP.NET MVC是一个Web项目。不是原生应用程序。

如果要插入WebBrowser,请在视图页中使用Iframe标记。

<iframe src="http://somewebsite.com/path/to/show" width="100" height="100"></iframe>