forked from DNNCommunity/DNN.Feedback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewComments.ascx
23 lines (23 loc) · 1.18 KB
/
ViewComments.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.UI.WebControls" Assembly="DotNetNuke" %>
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="ViewComments.ascx.vb" Inherits="DotNetNuke.Modules.Feedback.ViewComments" TargetSchema="http://schemas.microsoft.com/intellisense/ie3-2nav3-0" %>
<div class="dnnForm FeedbackComments dnnClear">
<table class="Feedback_Comments">
<tr>
<td colspan="2" class="Normal">
<asp:label id="litMessage" runat="server" Visible="false" cssclass="dnnFormMessage dnnFormInfo"></asp:label>
</td>
</tr>
<tr>
<td colspan="2" style="padding-bottom: 6px">
<asp:repeater id="rptComments" runat="server" EnableViewState = "False"></asp:repeater>
</td>
</tr>
<tr id="trPager" runat="server">
<td style="white-space:nowrap;" >
<asp:Label id="lblPageSize" Runat="server" resourcekey="lblPageSize" CssClass="SubHead">Comments Per Page:</asp:Label>
<asp:DropDownList id="ddlPageSize" Runat="server" AutoPostBack="True"></asp:DropDownList></td>
<td style="white-space:nowrap;" >
<dnn:PagingControl id="ctlPagingControl" runat="server" Mode="PostBack"></dnn:PagingControl></td>
</tr>
</table>
</div>