通过 vb.net 打开网页(或网页快照)到另一个网页
我有一个带有 vb.net 后端的 aspx 页面。在该页面中,我根据不同的条件从数据库中获取名称和网址。我的要求是,当我获得 url 时,代码应该使用该 url 并在我现有的 aspx 页面上以小型预览形式显示该网页。 所以基本上我有一个如下表 -
名称 URL 预览 URL Sandy www.myspace.com/sandy -- 应该是指定高度和宽度的 url 网页。 Mandy www.myspace.com/mandy -- 应该是指定高度和宽度的 url 网页。
有谁知道我怎样才能做到这一点?
i have an aspx page with vb.net back end. in that page i get names and url's from the database depending on different conditions. My requirement is that when i get the url, the code should then use that url and have that webpage in a small preview form on my existing aspx page.
so basically i have a table as follows -
Name URL Preview-URL
Sandy www.myspace.com/sandy -- should be the url webpage in specified height and width.
Mandy www.myspace.com/mandy -- should be the url webpage in specified height and width.
does anyone know how i can achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 iFrame 标记创建小网址预览。假设您的 aspx 中有一个名为“iframePlaceholder”的
asp:PlaceHolder
控件。在你的代码后面你可以做类似的事情:You can create small url previews by using the iFrame tag. Let's say you have an
asp:PlaceHolder
control called "iframePlaceholder" in your aspx. In your code behind you could do something like: