I have this textbox
<asp:TextBox ID="tbid" runat="server" class="form-control"></asp:TextBox>
form-control is a bootstrap class for the textbox to have the bootstrap look, if I disable the textbox from code using
tbid.Enabled = false;
the textbox loses the look of botstrap, after inspecting the code I saw that it is replaced by the aspNetDisabled class.
As I can prevent this from happening I want the button to keep the bootstrap look still disabled.