popularauthorspanel.ascx

来自「Portal C# Article Live」· ASCX 代码 · 共 22 行

ASCX
22
字号
<%@ Import namespace="Interspire.ArticleLive" %>
<%@ Import namespace="Interspire.ArticleLive.Web" %>
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="PopularAuthorsPanel.ascx.cs" Inherits="Interspire.ArticleLive.Web.Templates.BrightLightStretched.Panels.PopularAuthorsPanel" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<TABLE class="Panel PopularAuthorsPanel" id="Table2">
	<TR>
		<TD class="Heading"><%= ResourceHelper.GetString("PopularAuthors") %></TD>
	</TR>
	<TR>
		<TD class="Content">
			<asp:Repeater ID="AuthorList" Runat="server" Visible="<%# CurrentAuthors.Count > 0 %>" DataSource='<%# CurrentAuthors %>'>
			<HeaderTemplate><ol></HeaderTemplate>
				<ItemTemplate>
					<li><A href='<%# LinkHelper.CreateAuthorLink((User)Container.DataItem) %>'>
							<%# DataBinder.Eval(Container.DataItem, "Name") %>
						</A></li>
				</ItemTemplate>
				<FooterTemplate></ol></FooterTemplate>
			</asp:Repeater>
			<asp:Label id="NoAuthorsLabel" runat="server" Visible="<%# CurrentAuthors.Count == 0 %>" text='<%# ResourceHelper.GetString("NoPopularAuthors") %>'></asp:Label>
		</TD>
	</TR>
</TABLE>

⌨️ 快捷键说明

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