Style.CssClass Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the cascading style sheet (CSS) class rendered by the Web server control on the client.
public:
property System::String ^ CssClass { System::String ^ get(); void set(System::String ^ value); };
public string CssClass { get; set; }
member this.CssClass : string with get, set
Public Property CssClass As String
Property Value
The CSS class rendered by the Web server control on the client. The default is Empty.
Remarks
Use the 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:
<asp:TextBox id="TextBox1" ForeColor="Red" CssClass="class1" />
The following HTML is rendered on the client for the previous Web server control declaration:
<input type=text class="class1" style="ForeColor:red">
Note
On browsers that do not support CSS, setting the CssClass property will have no effect.