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

📄 popularproduct.ascx

📁 网上购物系统源代码加毕业设计论文
💻 ASCX
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -