likeware.ascx

来自「购物管理系统的设计与开发」· ASCX 代码 · 共 30 行

ASCX
30
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="likeware.ascx.cs" Inherits="shopping.likeware" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<%@ OutputCache Duration="4000" VaryByParam="None" %>
<table width="100%" cellpadding="0" cellspacing="0" border="1"  bgcolor=Ivory  bordercolor="#6666ff">
	<asp:Repeater ID="MostPopularwareList" runat="server">
		<HeaderTemplate>
			<tr>
				<td class="MostPopularHead">
					&nbsp;<FONT face="宋体" size="4" color="#ff3300">热门推荐</FONT>
				</td>
			</tr>
		</HeaderTemplate>
		<ItemTemplate>
			<tr>
				<td >
					&nbsp;
					<asp:HyperLink Font-Size="10"  NavigateUrl='<%# "wareDetails.aspx?wareID=" + DataBinder.Eval(Container.DataItem, "wareID")%>' Text='<%#DataBinder.Eval(Container.DataItem, "ModelName")%>' runat="server" ID="Hyperlink1" NAME="Hyperlink1"/>
					<br>
				</td>
			</tr>
		</ItemTemplate>
		<FooterTemplate>
			<tr>
				<td >
					&nbsp;
				</td>
			</tr>
		</FooterTemplate>
	</asp:Repeater>
</table>

⌨️ 快捷键说明

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