hiding html buttons from code behind
<input id="Button1" type="button" value="delete" runat="server" class="bt1" onserverclick="button2" /> Code behind
Button mybut1 = (Button)FindControl("Button1"); mybut1.Visible = false; Another One
Button2.visible=false Both are not working