Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以编写工具提示html.RouteLink?
html.RouteLink
我的链接:
<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)},null)%>
感谢并保重,Ragims
如果“工具提示”是指一个title属性,那么是的:
title
<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)}, new { title="My Tooltip" })%>