-
Notifications
You must be signed in to change notification settings - Fork 0
/
OnlineQuery.aspx
74 lines (71 loc) · 2.69 KB
/
OnlineQuery.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="OnlineQuery.aspx.cs" Inherits="OnlineQuery" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div style="width:100%; padding:10px 10px 10px 10px">
<div style="width:100%; background-color: #FF9900; padding:10px 10px 10px 10px">
<center><h1 style="color: #CC3300;">ONLINE QUERY SUBMISSION</h1></center>
<div style="width:100%; background-color: #993300;">
<table width="100%">
<tr style="width:100%">
<td class="style1">
<div style="float:right">
<asp:Label ID="Label1" runat="server" ForeColor="#FF9900" Font-Names="tahoma" Font-Size="Medium" Text="User Name"></asp:Label>
</div>
</td>
<td style="width:50%">
<asp:TextBox ID="TextBox1" Font-Names="tahoma" Font-Size="12px" runat="server"
Width="298px"></asp:TextBox>
</td>
</tr>
<tr style="width:100%">
<td class="style1">
<div style="float:right">
<asp:Label ID="Label2" runat="server" ForeColor="#FF9900" Font-Names="tahoma" Font-Size="Medium" Text="E-Mail ID"></asp:Label>
</div>
</td>
<td style="width:50%">
<asp:TextBox ID="TextBox2" Font-Names="tahoma" Font-Size="12px" runat="server"
Width="298px"></asp:TextBox>
</td>
</tr>
<tr style="width:100%">
<td class="style1">
<div style="float:right">
<asp:Label ID="Label3" runat="server" ForeColor="#FF9900" Font-Names="tahoma" Font-Size="Medium" Text="Phone"></asp:Label>
</div>
</td>
<td style="width:50%">
<asp:TextBox ID="TextBox3" Font-Names="tahoma" Font-Size="12px" runat="server"
Width="298px"></asp:TextBox>
</td>
</tr>
<tr style="width:100%">
<td class="style1">
<div style="float:right">
<asp:Label ID="Label4" runat="server" ForeColor="#FF9900" Font-Names="tahoma" Font-Size="Medium" Text="Query"></asp:Label>
</div>
</td>
<td style="width:50%">
<asp:TextBox ID="TextBox4" Font-Names="tahoma" Font-Size="12px" runat="server"
Width="298px" Height="94px" TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
</table>
<table width="100%">
<tr style="width:100%">
<td style="width:100%">
<center>
<asp:Button ID="Button1" Font-Names="tahoma" Font-Size="Small"
ForeColor="#993300" runat="server" Text="Submit Query"
onclick="Button1_Click" />
<asp:Button ID="Button2" Font-Names="tahoma" Font-Size="Small" ForeColor="#993300" runat="server" Text="Cancel" />
<asp:Label ID="Label5" Font-Names="tahoma" Font-Size="Small" runat="server" Text=""></asp:Label>
</center>
</td>
</tr>
</table>
</div>
</div>
</div>
</asp:Content>