skin-entrycomments.ascx

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

ASCX
34
字号
<%@ Control Language="C#" %>
<%@ Register TagPrefix="CS" Namespace="CommunityServer.Controls" Assembly="CommunityServer.Controls" %>
<%@ Register TagPrefix="Galleries" Namespace="CommunityServer.Galleries.Controls" Assembly="CommunityServer.Galleries" %>
<%@ Import Namespace="CommunityServer.Components" %>
	
<div class="sectionContainer">
	<div class="sectionHeader"><CS:ResourceControl runat="server" ResourceName="Gallery_CommentListing_PictureComments" id="Resourcecontrol1"/></div>
	<div class="sectionBody">
<div id="comments">
	<asp:Repeater id="Comments" runat="server">
		<ItemTemplate>
		<strong><asp:HyperLink Runat="server" id="PermaLink" Text = "#" Title = "permalink" />
		    <span><asp:Literal runat="server" id="Title" /> @ <asp:Literal id="PostDate" runat="server" /></span></strong>
		
		<p class="comment">
		        <asp:Literal id="PostText" runat="server" />
				<asp:LinkButton Runat="server" id="EditLink" CausesValidation="False" />
		</p>		
				<p class="posteds">	
				<asp:HyperLink Target="_blank" Runat="server" id="NameLink" />
				</p>
		
		</ItemTemplate>
		

	</asp:Repeater>
</div>
		
		<Galleries:CommentForm runat="server" id="Commentform1" Visible="False" />
</div>
</div>


	

⌨️ 快捷键说明

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