在vb.net中运行时创建表,图像控件没有imageurl属性
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageUrl
是System.UI.WebControls.Image
控件的成员。相比之下,您使用的是直接HtmlImage
控件,该控件的呈现方式与 img 标记完全相同。您应该使用ImageUrl
is a member of theSystem.UI.WebControls.Image
control. By contrast, you are using the directHtmlImage
control which is rendered exactly as an img tag would be. You should use the Src property of the HtmlImage control instead.