Gets or sets the cascading style sheet (CSS) class rendered by the Web server control on the client.
Documentation for this section has not yet been entered.
Use the Style.CssClass property to specify the CSS class to render on the client for the Web server control. This property will render on browsers for all controls. It will always be rendered as the class attribute, regardless of the browser.
For example, suppose you have the following Web server control declaration:
Example
<asp:TextBox id="TextBox1" ForeColor="Red" CssClass="class1" />
The following HTML is rendered on the client for the previous Web server control declaration:
Example
<input type=text class="class1" style="ForeColor:red">
On browsers that do not support CSS, setting the Style.CssClass property will have no effect.