", nid);
foreach (Song.Entities.Navigation n in navi)
{
html += string.Format("
",
n.Nav_PID, n.Nav_ID, n.Nav_Name, n.Nav_Url, n.Nav_Target, n.Nav_Title,
string.IsNullOrEmpty(n.Nav_Color) ? "" : "color: " + n.Nav_Color + ";",
string.IsNullOrEmpty(n.Nav_Font) ? "" : "font-family: " + n.Nav_Font + ";",
!n.Nav_IsBold ? "" : "font-weight:bold;");
}
html += "
";
foreach (Song.Entities.Navigation n in navi)
html += _NaviDropHtml(n.Nav_ID, type);
}
return html;
}
#endregion
}
}