%@ 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
{
%>
<%
}
var des = item.Title != null ? item.Title : item.Field;
%>
<%= new HtmlAnchor(item.Field) { Href= item.Value, Suffix="...", Title=des, TextLength=24 }%>
<%
if (i != this.NavUrlParam.Count - 1)
{
%>
>
<%
}
%>
<%
}
%>
<%
}
%>