popularproduct.ascx

来自「网上购物系统源代码加毕业设计论文」· ASCX 代码 · 共 20 行

ASCX
20
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="PopularProduct.ascx.cs" Inherits="eshop.UserControl.PopularProduct" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<table width="95%" cellpadding="0" cellspacing="0" border="0">
	<asp:Repeater ID="PopularList" runat="server">
		<HeaderTemplate>
			<tr>
				<td class="MostPopularHead">热门商品
				</td>
			</tr>
		</HeaderTemplate>
		<ItemTemplate>
			<tr>
				<td bgcolor="#d3d3d3">
					<asp:HyperLink class="MostPopularItemText" NavigateUrl='<%# "../ProductInfo.aspx?ProductId=" + DataBinder.Eval(Container.DataItem, "ProductID")%>' Text='<%#DataBinder.Eval(Container.DataItem, "ProductName")%>' runat="server" ID="Hyperlink1"/>
					<br>
				</td>
			</tr>
		</ItemTemplate>
	</asp:Repeater>
</table>

⌨️ 快捷键说明

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