-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreply.aspx
More file actions
53 lines (51 loc) · 2.32 KB
/
Copy pathreply.aspx
File metadata and controls
53 lines (51 loc) · 2.32 KB
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
<%@ Page Language="C#" MasterPageFile="~/admin.master" AutoEventWireup="true" CodeFile="reply.aspx.cs" Inherits="reply" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 100%;">
<tr>
<td>
</td>
<td align="center">
<h1>User Queries</h1></td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
BackColor="White" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px"
CellPadding="3" Width="100%"
onselectedindexchanged="GridView1_SelectedIndexChanged">
<RowStyle ForeColor="#000066" />
<Columns>
<asp:BoundField DataField="Ticket_Id" HeaderText="Support Ticket ID " />
<asp:BoundField DataField="Type" HeaderText="Type" />
<asp:BoundField DataField="Subject" HeaderText="Subject" />
<asp:BoundField DataField="Email" HeaderText="Email ID" />
<asp:BoundField DataField="Message" HeaderText="Message">
<ItemStyle Width="400px" />
</asp:BoundField>
<asp:ButtonField CommandName="Select" Text="Reply" HeaderText="Reply" />
</Columns>
<FooterStyle BackColor="White" ForeColor="#000066" />
<PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
<SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" />
</asp:GridView>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</asp:Content>