comments_displaycomments.ascx

来自「一个ASP.NET下的中文内容管理和社区系统」· ASCX 代码 · 共 25 行

ASCX
25
字号
<%@ Register TagPrefix="community" Namespace="ASPNET.StarterKit.Communities" Assembly="ASPNET.StarterKit.Communities" %>
<%@ Control %>
<asp:Panel id="pnlComments" Runat="Server">
	<P>
		<TABLE cellSpacing="0" cellPadding="0" width="100%">
			<TR>
				<TD><SPAN class="Content_SubTitleRow">评论:</SPAN></TD>
				<TD align="right">
					<asp:DropDownList id="CommentView" Runat="Server">
						<asp:ListItem Text="Flat" value="0" />
						<asp:ListItem Text="Nested" value="1" />
						<asp:ListItem Text="Threaded" value="2" />
						<asp:ListItem Text="Embedded" value="3" />
					</asp:DropDownList></TD>
				<TD align="right">
					<asp:DropDownlist id="OrderBy" Runat="Server">
						<asp:ListItem Text="Oldest First" value="0" />
						<asp:ListItem Text="Newest First" value="1" />
					</asp:DropDownlist></TD>
			</TR>
		</TABLE>
		<BR>
		<community:ContentList id="CommentList" Runat="Server"></community:ContentList></P>
</asp:Panel>

⌨️ 快捷键说明

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