<asp:ImageButton ID="btnRemoveUser" runat="server" CommandName="ApplyRemoval" ImageUrl="~/Images/save.gif" onclick="btnRemoveUser_Click"/>
如何在btnRemoveUser_Click事件中禁用ASP.Net Image按钮?
我试过以下但他们没有工作:
btnRemoveUser.Visible = false;
btnRemoveUser.style.display = 'none';
btnRemoveUser.Attributes["disabled"] = "disabled";
答案 0 :(得分:1)
您可以将图像按钮的Enable属性设置为false
btnRemoveUser.Enabled = false;
有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/87xh91hb(v=vs.110).aspx
答案 1 :(得分:-1)
你想在c#或jquery中这样做吗?这是c#的代码:
btnRemoveUser.Attributes.Add("disabled", "disabled");