is it possible to write tooltip for html.RouteLink
?
my link:
<%= Html.RouteLink("<", new { p开发者_开发问答age = (Model.PageIndex - 1)},null)%>
Thank and take care, Ragims
If by 'tooltip' you mean a title
attribute, then yes:
<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)}, new { title="My Tooltip" })%>
精彩评论