%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyNoticeBar.ascx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MyNoticeBar" %>
平台公告
<%= new HtmlAnchor("更多...") { Href = WebUrl.NoticeList() }%>
<%
if (this.ListNotice != null
&& this.ListNotice.Count > 0)
{
foreach (var notice in this.ListNotice)
{
%>
-
<%= new HtmlAnchor(notice.Title.ToFirstString(80, "...", true)) { Href = WebUrl.NoticeView(notice.Guid) ,Suffix="...", TextLength=30}%>
<%
}
}
%>