-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSent.aspx
63 lines (61 loc) · 2.25 KB
/
CSent.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
<%@ Page Language="C#" MasterPageFile="~/CLogin.master" AutoEventWireup="true" CodeFile="CSent.aspx.cs" Inherits="CSent" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style10
{
width: 435px;
}
.style11
{
width: 19px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table class="tbl">
<tr>
<td class="tblhead">
JobSeeker Message Sent</td>
</tr>
<tr>
<td>
<table width="100%">
<tr>
<td class="style11">
</td>
<td>
</td>
</tr>
<tr>
<td class="style11">
</td>
<td>
<asp:GridView ID="GridView1" runat="server" Width="530px"
AutoGenerateColumns="False" Font-Bold="True" Font-Names="Calibri"
onrowcommand="GridView1_RowCommand1">
<RowStyle ForeColor="#006600" />
<Columns>
<asp:BoundField HeaderText="JobSeekerName" DataField="jname" />
<asp:BoundField HeaderText="Message" DataField="Message" />
<asp:BoundField HeaderText="Send Date" DataField="EntryDate" />
<asp:TemplateField HeaderText="Delete">
<ItemTemplate>
<asp:LinkButton Text="Delete" runat="server" ID="lnde" CommandArgument='<%#Eval("MID") %>'></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<HeaderStyle BackColor="#E2C6FF" />
</asp:GridView>
</td>
</tr>
<tr>
<td class="style11">
</td>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Content>