new events.ascx
来自「C#邮件代码库,用于邮件发送」· ASCX 代码 · 共 27 行
ASCX
27 行
<%@ Control Language="C#" %>
<%@ Register TagPrefix="community" Namespace="ASPNET.StarterKit.Communities" Assembly="ASPNET.StarterKit.Communities" %>
<%@ import Namespace="ASPNET.StarterKit.Communities" %>
<script runat="server">
void Page_Load() {
ContentList.DataSource = ContentPageUtility.GetNewContent("Event");
ContentList.DataBind();
}
</script>
<span class="WebBox_TitleText">New Events</span>
<br><br>
<community:ContentList id="ContentList" Runat="Server">
<ItemTemplate>
<li><community:ItemTitleLink Runat="Server"/></span>
<br>
<community:ItemBriefDescription Runat="Server"/>
<br>
<br>
</ItemTemplate>
<NoContentTemplate>
<i>There are no new events</i>
</NoContentTemplate>
</community:ContentList>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?