I’m using VS2010 C# ASP.NET
To programmatically change the ForeColor of an asp:Label named lblExample to ‘Red’, I write this:
lblExample.ForeColor = System.Drawing.Color.Red;
After changing the ForeColor, how do I programmatically set the ForeColor of the label to its default (that comes from the css file)?
Remark:
the label has no CSS entry (class or ID specific style). The color is inherited.
Easy