comments.ascx

来自「基于.Net环境下c#实现的国人自己的Blog平台,基于.Text的核心技术,但」· ASCX 代码 · 共 29 行

ASCX
29
字号
<%@ Control Language="c#" AutoEventWireup="false" Inherits="Dottext.Web.UI.Controls.Comments" %>
<a name = "feedback" />
<div class = "moreinfo">
	<div class = "moreinfotitle">
		Feedback
	</div>
	<asp:Literal ID = "NoCommentMessage" Runat ="server" />
	<asp:Repeater id="CommentList" runat="server" OnItemCreated="CommentsCreated" OnItemCommand="RemoveComment_ItemCommand">
		<HeaderTemplate>
			<ul class = "morelist">
		</HeaderTemplate>
		<ItemTemplate>
			<li class = "morelistitem">
				<div class = "moreinfotitle">
					<asp:Literal Runat = "server" ID = "Title" />
				</div>
				<asp:HyperLink Target="_blank" Runat="server" ID="NameLink" /><br />
				Posted @ 
<asp:Literal id = "PostDate" Runat = "server" /><br />
				<asp:Literal id = "PostText" Runat = "server" />
				<asp:LinkButton Runat="server" ID="EditLink" CausesValidation="False" />
			</li>
		</ItemTemplate>
		<FooterTemplate>
			</ul>
		</FooterTemplate>
	</asp:Repeater>
</div></a>

⌨️ 快捷键说明

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