改变ImageUrl onclick ImageButton编程c#
本文关键字:编程 ImageButton onclick ImageUrl 改变 | 更新日期: 2023-09-27 18:03:51
我试图改变ImageUrl onclick Imagebutton是目前在我的中继器。我必须改变它从后面的代码(cs文件)不使用jquery或js。
<asp:ImageButton ID="imgLike" ImageUrl="Content/images/thumbsup.png" onclick="imgLike_Click" runat="server" style="width:25px;height:25px" />
这里是代码
protected void imgLike_Click(object sender, ImageClickEventArgs e)
{
ImageButton imgLike = (ImageButton)rptinserting.FindControl("imgLike");
imgLike.ImageUrl = "Content/images/thumbsup1.png";
}
您将发送方转换回ImageButton并更改ImageUrl
。
protected void imgLike_Click(object sender, ImageClickEventArgs e)
{
ImageButton imgLike = sender as ImageButton;
imgLike.ImageUrl = "/Content/images/thumbsup1.png";
}