-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIssuereport.aspx
85 lines (82 loc) · 3.67 KB
/
Issuereport.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Issuereport.aspx.cs" Inherits="Issuereport" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style1
{
width: 739px;
}
.style3
{
text-align: right;
color: black;
width: 157px;
}
.style2
{
width: 202px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table class="tbl">
<tr>
<td class="tblhead">
ISSUE BOOK REPORT</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<table class="style1">
<tr>
<td class="style3">
Select Branch :
</td>
<td class="style2">
<asp:DropDownList ID="drpbranch" runat="server" CssClass="txt"
AutoPostBack="True" onselectedindexchanged="drpbranch_SelectedIndexChanged">
</asp:DropDownList>
</td>
<td class="lbl">
Select
Student :<asp:DropDownList ID="drpstudent" runat="server" CssClass="txt">
</asp:DropDownList>
<asp:Button ID="btnseach" runat="server" CssClass="btn"
onclick="btnseach_Click" Text="View" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td style="text-align: center">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
BackColor="#EAEAEA" BorderColor="#D9D9D9" BorderWidth="1px"
CellPadding="2" ForeColor="Black" GridLines="None" style="text-align: center"
Width="750px">
<AlternatingRowStyle BackColor="lightgrey" />
<Columns>
<asp:BoundField DataField="bookname" HeaderText="Book Name" />
<asp:BoundField DataField="issuedate" HeaderText="Issue Date" />
<asp:BoundField DataField="days" HeaderText="Days" />
</Columns>
<FooterStyle BackColor="Tan" />
<HeaderStyle BackColor="lightgrey" Font-Bold="True" />
<PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue"
HorizontalAlign="Center" />
<SelectedRowStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" />
<SortedAscendingCellStyle BackColor="#FAFAE7" />
<SortedAscendingHeaderStyle BackColor="#DAC09E" />
<SortedDescendingCellStyle BackColor="#E1DB9C" />
<SortedDescendingHeaderStyle BackColor="#C2A47B" />
</asp:GridView>
</td>
</tr>
</table>
</asp:Content>