How on earth do you add labels in MVC2? Intellisence says that there is an overload for label that takes 2 strings. I am getting an error telling me there is no such overload. And there doesn't appear to be any documentation anywhere telling how to do it? How do you do it in mvc2?
Update: Added an example of how I am trying to add a label
%><%=Html.Label(labelId, labelText)%><%
I was just reading that I may have to write an extension method of some sort. Do you know how to do that?