skin-entrylist.ascx

来自「community server 源码」· ASCX 代码 · 共 31 行

ASCX
31
字号
<%@ Control Language="C#" %>
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Register TagPrefix="Blog" Namespace="CommunityServer.Blogs.Controls" Assembly="CommunityServer.Blogs" %>
<Blog:InlineTagEditor runat="server" id="InlineTagEditor" LinkCssClass="TextButton" CssClass="InlineTagEditor" />
<asp:Repeater id="EntryItems" Runat="server">
<ItemTemplate>
	<div class="post">
		<div class="posthead">
			<h2><asp:HyperLink id="PostTitle" runat="server" /></h2>
			<CS:ResourceControl runat="server" ResourceName="Weblog_EntryList_Posted" id="Resourcecontrol1" />
			<asp:HyperLink id="PermaLink" Text="Perma Link" Runat="server" />
			<CS:ResourceControl runat="server" ResourceName="Weblog_EntryList_By" id="PostByResource" />
			<asp:HyperLink id="AuthorLink" Runat="server" />
		</div>
		
		<div class="postcontent">
			<asp:Literal id="Body" runat="server" /> <asp:HyperLink id="ReadMoreLink" Runat="server" />
		</div>
	</div>
		
	<div class="postfoot">	
		<Blog:BlogRatePost id="Ratings" runat="Server" CssClass="CommonRateControl" ReadOnlyCssClass="CommonRateControlReadOnly" ActiveCssClass="CommonRateControlActive" ImagesBaseUrl="~/Themes/default/images/common/" />
		<CS:ResourceControl runat="server" ResourceName="Weblog_EntryList_With" id="CommentDesc"/> 
		<asp:HyperLink id="CommentsLink" Runat="server" />   <asp:HyperLink id="EditLink" Visible = "False" Runat="server" />
		<div><CS:InlineTagEditorPanel runat="server" id="InlineTagEditorPanel" InlineEditorID="InlineTagEditor" /></div>
		<Blog:DownloadAttachmentLink runat="Server" id="Attachment" />
	</div>                            
</ItemTemplate>
</asp:Repeater>
<CS:SinglePager id = "pager" runat = "Server"  />

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?