%@ 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_content", WideWord=true, TextLength=20, Suffix="..."}.ToString() + new HtmlSpan(notice.ActiveBeginDate.ToAutoShortDate()) { Class = "total_num" }) { Href = WebUrl.NoticeView(notice.Guid) }%>
<%
}
} else
{
%>
暂无公告!
<%
}
%>