📄 skin-aggregatebloglist.ascx
字号:
<%@ Control Language="C#" %>
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Register TagPrefix="Blog" Namespace="CommunityServer.Blogs.Controls" Assembly="CommunityServer.Blogs" %>
<%@ Import Namespace="CommunityServer.Components" %>
<asp:Repeater ID ="GroupList" Runat="server" >
<ItemTemplate>
<h2><asp:Literal ID="GroupName" Runat="server" /></h2>
<hr />
<asp:Repeater ID = "BlogList" Runat="server">
<HeaderTemplate>
<table width="100%" class="tableBorder" cellpadding="4" cellspacing="1">
<tr>
<td class="column" width="300"><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_Blogs" ID="Resourcecontrol1" /></td>
<td class="column">Author(s)</td>
<td class="column" width="177" nowrap><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_LastPost" ID="Resourcecontrol2" /></td>
<td class="column" width="55" align="center" nowrap><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_Posts" ID="Resourcecontrol3" /></td>
<td class="column" width="55" align="center" nowrap><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_Articles" ID="Resourcecontrol4" /></td>
<td class="column" width="55" align="center" nowrap><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_Comments" ID="Resourcecontrol5" /></td>
<td class="column" width="55" align="center" nowrap><CS:ResourceControl runat="server" ResourceName="Weblog_Aggregate_Trackbacks" ID="Resourcecontrol6" /></td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td class = "fh4" width="*">
<b><asp:HyperLink ID = "BlogName" Runat="server" /></b>
<br />
<asp:Literal ID = "BlogDesc" Runat ="server" />
</td>
<td class="fh4">
<asp:Placeholder ID = "Author" Runat="server" />
</td>
<td class="fh4" width="177">
<asp:HyperLink ID = "RecentPost" Runat="server" />
</td>
<td class="fh4" align="center">
<asp:Literal ID = "PostCount" Runat ="server" />
</td>
<td class="fh4" align="center">
<asp:Literal ID = "ArticleCount" Runat ="server" />
</td>
<td class="fh4" align="center">
<asp:Literal ID = "CommentCount" Runat ="server" />
</td>
<td class="fh4" align="center">
<asp:Literal ID = "TrackbackCount" Runat ="server" />
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</ItemTemplate>
</asp:Repeater>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -