在vb.net中运行时创建表,图像控件没有imageurl属性

发布于 2024-08-24 20:23:25 字数 448 浏览 4 评论 0原文

我正在使用 htmltablerows 和 htmltablecell 在 vb.net 代码(htmltable)中创建一个表。我提供了图像控件,但该控件不能具有 .imageurl 属性,我需要该属性,因为我有一个处理程序 image.ashx,它从数据库中获取图像。 代码如下 -

TD = New HtmlTableCell 调暗 img 作为新的 HtmlImage() img.ID = "image_" & rd(“ID”) img.Style.Add("宽度", "100px") img.Style.Add("高度", "100px") img.ImageUrl = "Image.ashx?id=" & rd("ID")

在最后一行,"img.ImageUrl" 我收到此错误 - “ImageUrl”不是“System.Web.UI.HtmlControls.HtmlImage”的成员 我该如何解决这个问题?

i am creating a table in vb.net code (htmltable) with htmltablerows and htmltablecell. I gave on image control but thatr control cant have the .imageurl property, which i need cause i have a handler image.ashx which brings image from the database.
heres' the code -

TD = New HtmlTableCell
Dim img As New HtmlImage()
img.ID = "image_" & rd("ID")
img.Style.Add("width", "100px")
img.Style.Add("height", "100px")
img.ImageUrl = "Image.ashx?id=" & rd("ID")

on the last line, "img.ImageUrl" i get this error -
'ImageUrl' is not a member of 'System.Web.UI.HtmlControls.HtmlImage'
how do i fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

杀お生予夺 2024-08-31 20:23:25

ImageUrlSystem.UI.WebControls.Image 控件的成员。相比之下,您使用的是直接 HtmlImage 控件,该控件的呈现方式与 img 标记完全相同。您应该使用

ImageUrl is a member of the System.UI.WebControls.Image control. By contrast, you are using the direct HtmlImage control which is rendered exactly as an img tag would be. You should use the Src property of the HtmlImage control instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文