navbar.ascx

来自「网上商城管理系统源代码」· ASCX 代码 · 共 24 行

ASCX
24
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="NavBar.ascx.cs" Inherits="wqshop.Modules.NavBar" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<table id="navbar" cellpadding="0" cellspacing="0">
	<tr>
		<td class="l">
		</td>
		<td class="m">
			<%BindTopNav();%>
			<asp:DataList id="dlTopNav" RepeatLayout="Flow" RepeatColumns="11" RepeatDirection="Horizontal"
				runat="server" DataKeyField="CategoryID">
				<ItemTemplate>
					<a href='<%if(config.html==""){%>List.aspx?CatID=<%# DataBinder.Eval(Container.DataItem,"CategoryID") %><%}else{%>categorys-<%# DataBinder.Eval(Container.DataItem,"CategoryID")%>.<%=config.html%><%}%>'>
						<%# DataBinder.Eval(Container.DataItem, "Name")%>
					</a>
				</ItemTemplate>
				<SeparatorTemplate>
					&nbsp;|&nbsp;
				</SeparatorTemplate>
			</asp:DataList>
		</td>
		<td class="r">
		</td>
	</tr>
</table>

⌨️ 快捷键说明

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