我已经设计了一个MVC应用程序。但是当我将鼠标悬停在链接上时会得到url。请提出如何不显示url链接的信息。“部门”是我的控制器的名称,“财务”是我在控制器页面上的ActionResult 。
@Html.ActionLink("Finance & Accounting","Finance","Department")
最佳答案
您可以添加title属性以显示其他文本,例如
@Html.ActionLink("Finance & Accounting", "Finance", "Department", null, new { title = "Finance & Accounting" })