-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFeedback.aspx
114 lines (112 loc) · 4.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<%@ Page Title="Feedback" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Feedback.aspx.cs" Inherits="Feedback" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style34
{
width: 100%;
}
.style36
{
width: 376px;
}
.style38
{
width: 68px;
}
.style39
{
width: 374px;
}
.style40
{
width: 414px;
font-size: x-large;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table class="style34">
<tr>
<td>
</td>
</tr>
<tr>
<td>
<table class="style34">
<tr>
<td class="style39">
</td>
<td class="style40">
<em><strong>Feedback<br />
<br />
</strong></em><span class="style31">Welcome to our feedback page. If you would
like to send us your views or report technical problems, fill out the form below
and click 'Submit'.</span></td>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table class="style34">
<tr>
<td>
<table class="style34">
<tr>
<td class="style36">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/feedback.jpg"
Width="300px" />
</td>
<td>
<asp:Panel ID="Panel1" runat="server" BorderStyle="Outset" Width="409px">
<table class="style34">
<tr>
<td class="style38" style="text-align: right">
</td>
<td style="text-align: right">
<asp:Label ID="lblError" runat="server" ForeColor="Red"></asp:Label>
</td>
</tr>
<tr>
<td class="style38" style="text-align: right">
From:
</td>
<td>
<asp:TextBox ID="txtFrom" runat="server" Enabled="False" Width="322px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style38" style="text-align: right">
Message:
</td>
<td>
<asp:TextBox ID="txtMessage" runat="server" Height="137px" TextMode="MultiLine"
Width="322px"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style38" style="text-align: right">
</td>
<td style="text-align: right">
<asp:Button ID="txtSubmit" runat="server" Height="31px"
style="text-align: center" Text="Submit" Width="77px"
onclick="txtSubmit_Click" />
</td>
</tr>
</table>
</asp:Panel>
</td>
<td>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</asp:Content>