开发者

How do I get a tooltip for my ActionLink?

开发者 https://www.devze.com 2023-02-15 13:18 出处:网络
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??

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" })%>
0

精彩评论

暂无评论...
验证码 换一张
取 消