I have a C#.Net MVC3 web app. I am adding properties to textboxes (and drop down lists) using the HTML helper functions.
@Html.TextBox("Date", String.Format("{0:MM/dd/yyyy}", Model.Date),
new { @class = "datepicker", @title="Date mouse over text" })
Is there a way to format the @title
text?
CLARIFICATION: Italics, bolding, coloring....that type of formatting.