⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 popularauthorspanel.ascx

📁 Portal C# Article Live
💻 ASCX
字号:
<%@ Import namespace="Interspire.ArticleLive" %>
<%@ Import namespace="Interspire.ArticleLive.Web" %>
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="PopularAuthorsPanel.ascx.cs" Inherits="Interspire.ArticleLive.Web.Templates.SlickStretched.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>
<div class="HorizontalRule"></div>

⌨️ 快捷键说明

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