forked from DNNCommunity/DNN.Repository
-
Notifications
You must be signed in to change notification settings - Fork 2
/
EditComment.ascx
27 lines (27 loc) · 1.3 KB
/
EditComment.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ Control Language="vb" Codebehind="EditComment.ascx.vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Modules.Repository.EditComment" %>
<table cellspacing="0" cellpadding="0" width="750" summary="Edit Repository Comment">
<tr valign="top">
<td class="SubHead">
<label for="<%=txtName.ClientID%>">User Name:</label>
</td>
<td>
<asp:TextBox ID="txtName" runat="server" MaxLength="100" Columns="30" Width="390" CssClass="NormalTextBox" />
<br />
</td>
</tr>
<tr valign="top">
<td class="SubHead">
<label for="<%=txtComment.ClientID%>">Comment:</label>
</td>
<td>
<asp:TextBox ID="txtComment" runat="server" Columns="44" Width="390" CssClass="NormalTextBox" Rows="6" TextMode="Multiline" />
<br />
</td>
</tr>
</table>
<p>
<asp:LinkButton ID="cmdUpdate" runat="server" CssClass="CommandButton" Text="Update" BorderStyle="none" />
<asp:LinkButton ID="cmdCancel" runat="server" CssClass="CommandButton" Text="Cancel" BorderStyle="none" CausesValidation="False" />
<asp:LinkButton ID="cmdDelete" runat="server" CssClass="CommandButton" Text="Delete" BorderStyle="none" CausesValidation="False" />
</p>
<hr size="1" noshade="noshade" />