vgquotes/Src/VideoGameQuotes.Web/Views/Quote/PagingMenu.ascx

15 lines
796 B
Plaintext
Raw Normal View History

2011-02-22 04:05:23 +00:00
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.Models.PagingMenuModel>" %>
<% if (!Model.HasNext && !Model.HasPrevious) { return; } %>
<div class="paging-menu">
<ul class="menu clearfix">
<% if (Model.HasNext) { %><li><%= Html.ActionLink("\u25B6", Model.Action, Model.Controller, new { page = (Model.CurrentPage + 1) }, new { title = "next page" })%></li><% } %>
<li><strong><%= Model.CurrentPage %></strong></li>
<% if (Model.HasPrevious) { %><li><%= Html.ActionLink("\u25C0", Model.Action, Model.Controller, new { page = (Model.CurrentPage - 1) }, new { title = "previous page" })%></li><% } %>
</ul>
<p>
Showing <strong><%= Model.Start %>&mdash;<%= Model.ActualEnd %></strong> of <strong><%= Model.TotalCount %></strong>.
</p>
</div>