top10.ascx

来自「《ASP.NET程序设计实用教程》源代码,这本书非常使用,有次源码更是锦上添花,」· ASCX 代码 · 共 14 行

ASCX
14
字号
<%@ Control Inherits="top10" Src="top10.ascx.vb"%>
<center><b>本类销售前10名</b></center>
<p>
<asp:Repeater id="myRepeater" onItemDataBound="MyRepeater_ItemDataBound" runat="server">
	<ItemTemplate>
		<asp:Label id="lblNo" runat="server"/>
		<asp:HyperLink Text='<%# Container.DataItem("BookName") %>' NavigateUrl='<%# "../particular.aspx?BookId=" & Container.DataItem("BookId") %>' runat="server"/>
	</ItemTemplate>
	<SeparatorTemplate>
		<br>
	</SeparatorTemplate>
</asp:Repeater>

⌨️ 快捷键说明

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