基本上,我有一个包含多行的“帖子”数据表。每行包含“ UserID ”、“ PostBody ”、“ PostDate ”、“ UploadedFileID ”等字段。
我想要实现的是一个“新闻”页面,用户可以在其中查看 DataTable 中的所有帖子。
因此,如果我有 5 行,我希望每一行都有一个 HTML 结构,例如:
<div id="post">
<h3>User name (based on the UserID row)</h3>
<div id="postBody">
bla bla bla whatever the user posted
</div>
<a href="(link to the posted file)">
<img src="something" />
</a>
</div>
我在想,在 .aspx 文件中,在 PageLoad 事件中我必须进行一个 while 循环,例如:
while (there are posts in the posts table)
write html;
如何添加 HTML 构建条件,更重要的是,分页?
谢谢,都铎王朝。