Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I hope someone out there has some ideas. I would like to tidy up my code and so I already used the Html.LabelFor. However now I want to assign a CSS class to the labels.

Html.LabelFor(model => model.Customer.Description   ????)

Does anyone out there know if this is possible in MVC3. Note it's MVC3 I am using. Already I saw a post that talked about MVC2 and there being no simple solution.

share|improve this question

2 Answers

up vote 7 down vote accepted

There is no built in way to do this in MVC 3. You will have to write your helper that does this. Take a look at the LabelExtensions class to see how it is done.

share|improve this answer
1  
Thanks. Just wanted some confirmation there was nothing new in MVC3. I wonder why they didn't give the Html.LabelFor a bit more flexibility. I guess I'm not the only one wanting to do this. – JudyJ May 7 '11 at 16:05
5  
@LeeGarner well, i'm on the MVC team and I'm not sure why the Label helper does not take a htmlAttributes parameter. Perhaps some oversight. I'll file a bug to make sure we add it in the next version. – marcind May 7 '11 at 16:11
@marcind while you're at it, can you un-internal the helpers, ie. in LabelExtensions, LabelHelper is internal, so we can't use it when rolling our own helper extensions. – George R Jul 17 '11 at 5:05
@George R - it's unlikely they'll do that. They intern them for a reason, and that's so that people don't do what you want to do. That frees them to change the implementation from version to version without worrying about compatibility with end user apps. – Mystere Man Jul 17 '11 at 7:05
3  
@George R - the next version of MVC will support a htmlAttributes parameter like all the other helpers to enable this scenario. We probably won't be making the LabelHelper function public though. But I hope this will meet your needs. – marcind Jul 17 '11 at 20:04

Here you go buddy-o:

http://pastebin.com/S8FXXEBT

share|improve this answer
Can you please help? I am getting the following error [ img543.imageshack.us/img543/8796/32194739.jpg ] – Ciwan Feb 5 at 16:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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