📄 readerdetail.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReaderDetail.aspx.cs" Inherits="ReaderDetail" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>图书信息管理系统-->读者详细信息</title>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align: center" >
<table border="1" cellpadding="0" cellspacing="0" style="width: 600px; height: 260px">
<tr>
<td colspan="2" style="width: 600px; height: 30px; background-color: silver">
<span style="font-size: 18pt">图书信息管理系统--</span>读者详细信息</td>
</tr>
<tr>
<td colspan="2" style="width: 600px; height: 210px">
<div style="text-align: center">
<table border="0" cellpadding="0" cellspacing="0" style="width: 550px">
<tr>
<td colspan="2" style="text-align: left; background-color: silver;">
基本信息:</td>
</tr>
<tr>
<td style="width: 150px; text-align: center">
读者编号:</td>
<td style="width: 400px; text-align: left">
<asp:Label ID="lbl_ReaderID" runat="server" Font-Bold="True" ForeColor="Blue"></asp:Label></td>
</tr>
<tr>
<td style="width: 150px; height: 19px; text-align: center">
借书证号:</td>
<td style="width: 400px; height: 19px; text-align: left">
<asp:Label ID="lbl_CardID" runat="server" Font-Bold="True" ForeColor="Blue"></asp:Label></td>
</tr>
<tr>
<td style="width: 150px; text-align: center">
姓名:</td>
<td style="width: 400px; text-align: left">
<asp:Label ID="lbl_ReaderName" runat="server" Font-Bold="True" ForeColor="Blue"></asp:Label></td>
</tr>
<tr>
<td style="width: 150px; height: 19px; text-align: center">
联系电话:</td>
<td style="width: 400px; height: 19px; text-align: left">
<asp:Label ID="lbl_Tel" runat="server" Font-Bold="True" ForeColor="Blue"></asp:Label></td>
</tr>
<tr>
<td colspan="2" style="text-align: left; background-color: silver;">
借阅信息:</td>
</tr>
<tr>
<td colspan="2">
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" PageSize="15" AllowPaging="True" CellPadding="1" DataKeyNames="BookID" ForeColor="#333333" OnPageIndexChanging="GridView1_PageIndexChanging">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="width: 110px; height: 19px; text-align: center;">
<%# Eval("BookID")%>
</td>
<td style="width: 110px; height: 19px; text-align: center;">
<%# Eval("ManID")%>
</td>
<td style="width: 110px; height: 19px; text-align: center;">
<%# Eval("BookName")%>
</td>
<td style="width: 110px; height: 19px; text-align: center;">
<%# Eval("BorrowDate")%>
</td>
<td style="width: 110px; height: 19px; text-align: center;">
<%# Eval("ReturnDate")%>
</td>
</tr>
</table>
</ItemTemplate>
<HeaderTemplate>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="width: 110px; height: 19px; text-align: center">
图书编号</td>
<td style="width: 110px; height: 19px; text-align: center">
管理编号</td>
<td style="width: 110px; height: 19px; text-align: center">
图书名</td>
<td style="width: 110px; height: 19px; text-align: center">
借书日期
</td>
<td style="width: 110px; height: 19px; text-align: center">
还书日期
</td>
</tr>
</table>
</HeaderTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<EditRowStyle BackColor="#999999" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
</asp:GridView>
</td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td colspan="2" style="width: 600px; height: 30px; background-color: gainsboro">
<a href="ReaderSearch.aspx">返回</a></td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -