从代码隐藏访问图像控制

发布于 2024-08-24 02:51:29 字数 596 浏览 5 评论 0原文

编译器错误消息:CS0030:无法将类型“System.Web.UI.Control”转换为“System.Web.UI.WebControls.ImageField”

Line 107:    protected void BookListView_DataBinding(object sender, EventArgs e)
Line 108:    {
Line 109:        ImageField img = (ImageField)BookListView.FindControlR("Image1");
Line 110:        if (img.ImageUrl == "")
Line 111:            img.ImageUrl = "Snoimage.gif";

控件已找到,但...

第 109 行发生错误

FindControlR 是查找control

该控件位于列表视图中

<asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("Pic_Address") %>' />

Compiler Error Message: CS0030: Cannot convert type 'System.Web.UI.Control' to 'System.Web.UI.WebControls.ImageField'

Line 107:    protected void BookListView_DataBinding(object sender, EventArgs e)
Line 108:    {
Line 109:        ImageField img = (ImageField)BookListView.FindControlR("Image1");
Line 110:        if (img.ImageUrl == "")
Line 111:            img.ImageUrl = "Snoimage.gif";

the control is find but ...

error occured in line 109

FindControlR is an extension to find the control

the control is located in a listview

<asp:Image ID="Image1" runat="server" ImageUrl='<%# Eval("Pic_Address") %>' />

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

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

发布评论

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

评论(1

や莫失莫忘 2024-08-31 02:51:29

您正在尝试投射图像 控件到 ImageField控制。

尝试稍微修改您的代码:

Image img = (Image)BookListView.FindControlR("Image1");

You're trying to cast an Image control to an ImageField control.

Try modifying your code slightly:

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