%@ Control Language="C#" Inherits="AVA.ResourcesPlatform.WebUI.Control.Index.IndexNoticeBy" %>
<%
if(this.ListNotice.Count>0)
{
foreach (var notice in this.ListNotice)
{
%>
<%= new HtmlAnchor(new HtmlSpan(notice.Title) { Class="text", WideWord= true, Suffix="...", TextLength = 100}.ToString() + new HtmlSpan(notice.ActiveBeginDate.ToAutoShortDate()) { Class = "total_num" }.ToString()) { Href = WebUrl.NoticeView(notice.Guid),Title = notice.Title }%>
<%
}
} else
{
%>
暂无公告!
<%
}
%>