PageRenderTime 37ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/User controls/PostList.ascx

#
ASP.NET | 11 lines | 9 code | 2 blank | 0 comment | 0 complexity | 0f4d335b7ad2c3e91f3dd8f2817551dd MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <%@ Control Language="C#" AutoEventWireup="true" CodeFile="PostList.ascx.cs" EnableViewState="false" Inherits="UserControls.PostList" %>
  2. <div runat="server" id="posts" class="posts" />
  3. <div id="postPaging" style="display: none">
  4. <a runat="server" id="hlPrev" style="float:left">&lt;&lt; <%=Resources.labels.previousPosts %></a>
  5. <a runat="server" id="hlNext" style="float:right"><%=Resources.labels.nextPosts %> &gt;&gt;</a>
  6. </div>
  7. <div style="clear:both; display:block">
  8. <blog:PostPager ID="pager1" runat="server"></blog:PostPager>
  9. </div>