hello all,
is it possible to write tooltip for html.RouteLink?
my link:
<%= Html.RouteLink("<", new { page = (Model.PageIndex - 1)},null)%>
Thank and take care, Ragims
hello all,
is it possible to write tooltip for html.RouteLink?
my link:
<%= Html.RouteLink("<", new { page = (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" })%>