Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net 在操作链接上显示注释_Asp.net_Css_Asp.net Mvc - Fatal编程技术网

Asp.net 在操作链接上显示注释

Asp.net 在操作链接上显示注释,asp.net,css,asp.net-mvc,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") 你是说头衔吗 grid.Column(header: "", fo

当用户鼠标位于操作链接上时,如何显示注释?我使用的是gridview,下面是我的一个列,其中包含一个操作链接:

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

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

如果将链接悬停,将在此处显示文本。

能否为链接添加标题?如果是这样,浏览器将把注释显示为工具提示。