<%@ Control Language="C#" Inherits="AVA.ResourcesPlatform.WebUI.Control.Nav" %> <% if (this.NavUrlParam != null && this.NavUrlParam.Count > 0) { this.NavUrlParam.Insert(0, new AVA.ResourcesPlatform.Config.UrlParam() { Field = "首页", Value = WebUrl.Index() }); %>

您现在的位置: <% for (int i = 0; i <= this.NavUrlParam.Count - 1; i++) { var item = this.NavUrlParam[i]; if (i == this.NavUrlParam.Count - 1) { %> <% } else { %> <% } %> <%= new HtmlAnchor(item.Field) { Href= item.Value }%> <% if (i != this.NavUrlParam.Count - 1) { %> >> <% } %> <% } %>

<% } %>