改变ImageUrl onclick ImageButton编程C#

我试图改变ImageUrl onclick我的中继器上存在的图像按钮。我必须从不使用jquery或js的代码(cs文件)后面进行更改。在此先感谢改变ImageUrl onclick ImageButton编程C#

<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";

}

以上是 改变ImageUrl onclick ImageButton编程C# 的全部内容, 来源链接: utcz.com/qa/260521.html

回到顶部