ASP.Net 4.5. IIS 7. Windows Server 2008 R2.
I have a skinfile.skin file in which I have a definition for all the buttons on my web site, namely,
<asp:Button runat="server"
BackColor="#788999"
ForeColor="White"
Font-Name="Arial"
Font-Size="14px"
Style="cursor: pointer; cursor: hand;" />
It works fine, EXCEPT that when I disable a button, the button still remains the same color, etc. How can I set up the definition for the buttons in my skin file so that they show differently when disabled?
Go to the complete details ...