gpt4 book ai didi

c# - 从下拉列表中选择后如何更改图像url

转载 作者:行者123 更新时间:2023-11-28 05:07:23 27 4
gpt4 key购买 nike

您好,我有一个下拉列表和 ID,就像在选择四个选项之一以在代码隐藏中设置 Image2 的 imageurl 时一样?

最佳答案

一个例子。在您的标记中:

< <asp:DropDownList ID="TestDropDownList" runat="server" 
onselectedindexchanged="TestDropDownList_SelectedIndexChanged" AutoPostBack="true">
<asp:ListItem Value="http://url.com/image1.png" Text="Option 1"></asp:ListItem>
<asp:ListItem Value="http://url.com/image2.png" Text="Option 2"></asp:ListItem>
<asp:ListItem Value="http://url.com/image3.png" Text="Option 3"></asp:ListItem>
<asp:ListItem Value="http://url.com/image4.png" Text="Option 4"></asp:ListItem>
</asp:DropDownList>
<asp:Image ID="TestImage" ImageUrl="" runat="server" />

在您的代码隐藏中:

protected void TestDropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
Image i = this.TestImage;
i.ImageUrl = ((DropDownList)sender).SelectedValue;

}

关于c# - 从下拉列表中选择后如何更改图像url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5532248/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com