vote up 1 vote down star

Can I assign more than one "CssClass" to a control in asp.net?How to do this?

flag

56% accept rate

4 Answers

vote up 8 vote down check

To assign class "myClass1" and "myClass2" you simply say:

<asp:Label runat="server" CssClass="myClass1 myClass2" />

This is the same approach you'd use in normal HTML as in:

<div class="myClass1 myClass2"></div>
link|flag
vote up 2 vote down

If you wanted to add another class programmatically and don't know what classes have already been added

MyControl.CssClass += " newclass";
link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I imagine it's just like setting the class attribute in an XHTML element.

<p class="foo bar"></p>

<asp:Something CssClass="foo bar" runat="server" />
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.