vgquotes/Src/VideoGameQuotes.Web/Views/Quote/PagingMenu.ascx
tmont 140b1d6bcc * added logo
* updated footer styles
* paged the browse data
2011-02-27 01:14:56 +00:00

19 lines
911 B
Plaintext

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.Models.PagingMenuModel>" %>
<% if (!Model.ShouldShowMenu) { 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>
<% if (Model.CurrentPageIsValid) { %>
Showing <strong><%= Model.Start%>&mdash;<%= Model.ActualEnd%></strong> of <strong><%= Model.TotalCount%></strong>.
<% } else { %>
Nothing to show of <strong><%= Model.TotalCount%></strong>.
<% } %>
</p>
</div>