-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFeedback.aspx
49 lines (47 loc) · 1.67 KB
/
Feedback.aspx
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Feedback.aspx.cs" Inherits="Feedback" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 500px">
<tr>
<td style="width: 135px">
Name:
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 135px">
EmailID:
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<br/>
<asp:Label ID="Label4" runat="server" Text="Label" style="color: #FF3300" Visible="False"></asp:Label>
</td>
</tr>
<tr>
<td style="width: 135px">
Feedback/Comments
</td>
<td>
<asp:TextBox ID="TextBox3" runat="server" SkinID="Comments" TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 135px">
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="Submit"
onclick="Button1_Click1"/>
</td>
</tr>
<tr>
<td style="text-align: center;" colspan="2">
<asp:Label ID="Label3" runat="server" Text="Label" Visible="False"
style="color: #FF3300">
</asp:Label>
</td>
</tr>
</table>
</asp:Content>