I think开发者_StackOverflow this should be simple, but I can't find the option!
How do I get a tool-tip/alt
for my ActionLink??
<%=Html.ActionLink("New", "List", "FormSummary", new {childId = Child.Id}, new {Class = "action add"})%>
It's html title attribute:
<%=Html.ActionLink("New", "List", "FormSummary", new {childId = Child.Id},
new {Class = "action add", title="My Tooltip" })%>
精彩评论