通过 vb.net 打开网页(或网页快照)到另一个网页

发布于 2024-08-24 20:37:14 字数 280 浏览 2 评论 0原文

我有一个带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬シ愛 2024-08-31 20:37:14

您可以使用 iFrame 标记创建小网址预览。假设您的 aspx 中有一个名为“iframePlaceholder”的 asp:PlaceHolder 控件。在你的代码后面你可以做类似的事情:

Dim iframeControl As New LiteralControl("<iframe src=""www.myspace.com/mandy"" width=""100px"" height=""300px"">")
iframePlaceholder.Controls.Add(iframeControl)

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:

Dim iframeControl As New LiteralControl("<iframe src=""www.myspace.com/mandy"" width=""100px"" height=""300px"">")
iframePlaceholder.Controls.Add(iframeControl)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文