FormView C# 切换图像可见性

发布于 2024-11-25 11:48:17 字数 735 浏览 2 评论 0原文

我有一个显示按钮和图像的 FormView。 当用户单击 linkBut​​ton 时,我想显示/隐藏图像的可见性。

<asp:FormView ID="FormOptions" runat="server" CellPadding="4" DataSourceID="dsOpts" ForeColor="#333333">
<ItemTemplate>
<asp:Button ID="ButtonHide" runat="server" Text='<%# Eval("optDisplay")%>' onclick="ButtonHide_Click"/>
<asp:Image ID="ImageFP" ImageUrl='<%# Eval("optImage")%>' runat="server" CssClass="optImages"/>
</ItemTemplate>
</asp:FormView>

然后在我的代码后面,我有:

protected void ButtonHide_Click(object sender, EventArgs e)
{
ImageFP.visible = false;
}

但是,我收到一条错误消息,说它找不到 ImageFP。当图像不是 FormView 的一部分时,这有效,所以我猜我需要更直接地指定图像的路径。我是 Visual Basic 的新手,感谢您的指导!

I have a FormView that displays a Button and an image.
When the user clicks the linkButton, I want to show/hide the visibility of image.

<asp:FormView ID="FormOptions" runat="server" CellPadding="4" DataSourceID="dsOpts" ForeColor="#333333">
<ItemTemplate>
<asp:Button ID="ButtonHide" runat="server" Text='<%# Eval("optDisplay")%>' onclick="ButtonHide_Click"/>
<asp:Image ID="ImageFP" ImageUrl='<%# Eval("optImage")%>' runat="server" CssClass="optImages"/>
</ItemTemplate>
</asp:FormView>

Then in my code behind, I have:

protected void ButtonHide_Click(object sender, EventArgs e)
{
ImageFP.visible = false;
}

However, I get an error saying it cannot find ImageFP. This works when the image is not part of a FormView so I'm guessing I need to specify more directly the path to the image. I'm new with Visual Basic and appreciate any guidance!

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

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

发布评论

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

评论(1

黑色毁心梦 2024-12-02 11:48:17

您需要获取对表单视图的项目模板内的图像的引用
像下面这样

protected void ButtonHide_Click(object sender, EventArgs e)
{

Image tmp = (Image)FormView1.FindControl("ImageFP");
tmp.Visible = !(tmp.Visible);// this will toggle the visibility 

}

You need to get a refrence to the image inside the item template of the Form view
like the following

protected void ButtonHide_Click(object sender, EventArgs e)
{

Image tmp = (Image)FormView1.FindControl("ImageFP");
tmp.Visible = !(tmp.Visible);// this will toggle the visibility 

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