Can I assign more than one "CssClass" to a control in asp.net?How to do this?
|
|
To assign class "myClass1" and "myClass2" you simply say:
This is the same approach you'd use in normal HTML as in:
|
||
|
|
|
|
If you wanted to add another class programmatically and don't know what classes have already been added
|
||
|
|
|
|
You can try the eqivalent of: class="class1 class2" So if it's a property just try throwing the classes with a space between them in there. |
||
|
|
|
|
I imagine it's just like setting the class attribute in an XHTML element.
|
||
|
|
