Hello all,
<%= Html.RouteLink(">>>", new { page = (Model.PageIndex + 1) },null)%>
Is it possible to set image instead ">>>" and how?
Take care, Ragims
Hello all,
<%= Html.RouteLink(">>>", new { page = (Model.PageIndex + 1) },null)%>
Is it possible to set image instead ">>>" and how?
Take care, Ragims
<a href="<%= Url.RouteUrl(new { page = (Model.PageIndex + 1) })">
<img src="next.jpg" />
</a>
I'm unsure of the exact syntax, don't have ASP.NET MVC on the current machine.
Possible duplicate.
http://stackoverflow.com/questions/712593/mvc-routelink-and-image
Please check out the Link in that question and view the provided examples for the custom ImageLink Helper.