62,272
社区成员
发帖
与我相关
我的任务
分享
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:DataList ID="DataList1" runat="server" Height="500px" Width="700px"
BackColor="#CACACA">
<HeaderTemplate>
评论
</HeaderTemplate>
<ItemTemplate>
<table style=" height:50px; width:700px;" border="1" cellpadding="0" cellspacing="0">
<tr>
<td style=" height:20px; width:700px;" align="left" bgcolor="White"><%#Eval("userName") %>---><%#Eval("issuanceDate") %></td>
</tr>
<tr>
<td style=" height:30px; width:700px;" align="left" bgcolor="White"><%#Eval("content") %></td>
</tr>
</table>
</ItemTemplate>
<FooterTemplate>
<asp:LinkButton ID="next" runat="server" OnClick="next_click">下一页 </asp:LinkButton>
<asp:LinkButton ID="pre" runat="server" OnClick="pre_click"> 上一页</asp:LinkButton>
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
123</FooterTemplate>
</asp:DataList>
</ContentTemplate>
</asp:UpdatePanel>
