This documentation is archived and is not being maintained.
Style.CssClass Property
.NET Framework 1.1
Gets or sets the CSS class rendered by the Web server control on the client.
[Visual Basic] Public Property CssClass As String [C#] public string CssClass {get; set;} [C++] public: __property String* get_CssClass(); public: __property void set_CssClass(String*); [JScript] public function get CssClass() : String; public function set CssClass(String);
Property Value
The CSS class rendered by the Web server control on the client. The default is String.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.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
Style Class | Style Members | System.Web.UI.WebControls Namespace
Show: