tooltip for html.RouteLink

788 Views Asked by At

is it possible to write tooltip for html.RouteLink?

my link:

 <%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)},null)%>  

Thank and take care, Ragims

1

There are 1 best solutions below

3
On BEST ANSWER

If by 'tooltip' you mean a title attribute, then yes:

<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)}, new { title="My Tooltip" })%>