new posts.ascx
来自「C#邮件代码库,用于邮件发送」· ASCX 代码 · 共 30 行
ASCX
30 行
<%@ 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("Post");
ContentList.DataBind();
}
</script>
<span class="WebBox_TitleText">New Posts</span>
<br><br>
<community:ContentList id="ContentList" Runat="Server">
<ItemTemplate>
<li><community:ItemTitleLink Runat="Server"/></span>
<br>
Posted by
<community:ItemAuthor Runat="Server"/>
on
<community:ItemDateCreated Runat="Server" />
<br>
<br>
</ItemTemplate>
<NoContentTemplate>
<i>There are no new posts</i>
</NoContentTemplate>
</community:ContentList>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?