_toplist.ascx

来自「一、安装SQL数据库 1、 打开Microsoft SQL Server 企业」· ASCX 代码 · 共 19 行

ASCX
19
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="_TopList.Ascx.cs" Inherits="XfokSite.TopList" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<%@ OutputCache Duration="240" VaryByParam="ChannelID;ClassID" %>
<%
/*
Duration="240"
此为缓存时间,请酌情设置(单位:秒)
*/
//Response.Write(DateTime.Now);
%>
<asp:DataList ID="TopList_DataList" runat="server" CellPadding="0" CellSpacing="0" RepeatDirection="Horizontal" RepeatColumns="1"
	Width="100%" OnItemDataBound="thisItemBound">
	<itemstyle Width="50%"></itemstyle>
	<itemtemplate>
		<asp:HyperLink Runat="server" ID="Top_Class" /> <asp:HyperLink Runat="server" ID="Top_Links" /> <asp:Label Runat="server" ID="Top_DateTime" Style="color:gray;font-size:8pt" />
	</itemtemplate>
	<alternatingitemtemplate>
		<asp:HyperLink Runat="server" ID="Top_Class" /> <asp:HyperLink Runat="server" ID="Top_Links" /> <asp:Label Runat="server" ID="Top_DateTime" Style="color:gray;font-size:8pt" />
	</alternatingitemtemplate>
</asp:DataList>

⌨️ 快捷键说明

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