Given the MVC2 code below why is the second label getting mangled?
<%=Html.Label("DisplayFor(" + "DateHired,\"Date\"):") %>
<%=Html.Label("DisplayFor(" + "c=>c." + "DateHired,\"Date\"):") %>
<%=Html.DisplayFor(c=>c.DateHired,"Date") %>
results in:
DisplayFor(DateHired,"Date"):
DateHired,"Date"):
2/28/1999