显示对操作链接的评论

时间:2012-09-03 14:43:35

标签: asp.net css asp.net-mvc

当用户鼠标悬停在动作链接上时,如何显示评论?我正在使用gridview,这是我的一个包含操作链接的列:

grid.Column(header: "", format:  (item) => Html.ActionLink("Détails", "Details",
 new { id = item.id_projet}, new { @class = "details" }), style: "actions")

1 个答案:

答案 0 :(得分:3)

你的意思是冠军?

grid.Column(header: "", format:  (item) => Html.ActionLink("Détails", "Details",
 new { id = item.id_projet}, new { @class = "details", @title = "text here" }),
 style: "actions")  

如果您悬停链接,则会显示文字text here