This code
<%= Html.LabelFor(model => model.Name) %>
produces this
<label for="Name">Name</label>
But I want this
<label for="Name" class="myLabel">Name</label>
How do you do that?
|
This code
produces this
But I want this
How do you do that? |
||||
|
|
|
Okay, looking at the source (System.Web.Mvc.Html.LabelExtensions.cs) for this method, there doesn't seem to be a way to do this with an HtmlHelper in ASP.NET MVC 2. I think your best bet is to either create your own HtmlHelper or do the following for this specific label:
|
|||||||||||
|
|
Overload of LabelFor:
|
|||
|
|
|
It appears that C# see the class as reserved word. So if you use the @ before the class attribute it works around the problem, ie:
The @ symbol makes the "class" a literal that is passed through. |
|||||||||||||||||
|