温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:个人图书管理系统源码
当前文件路径:MyLibary/BookManage/BookSearchResult.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BookSearchResult.aspx.cs" Inherits="BookManage_BookSearchResult" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>无标题页</title> 8
</head> 9
<body> 10
<form id="form1" runat="server"> 11
<div> 12
<table id="table1" border="0" align=center width=520 runat="server" bgColor="#f1f0f4"> 13
<tr> 14
<td align="center"> 15
<br> 16
<h1><font face="楷体_GB2312"><b>查 询 结 果</b></font></h1> 17
</td> 18
</tr> 19
<tr> 20
<td align="center"> 21
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Width=100% BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" Font-Size="10pt" GridLines="Vertical"> 22
<Columns> 23
<asp:HyperLinkField DataNavigateUrlFields="BookID" DataNavigateUrlFormatString="ReaderBookDetails.aspx?bookID={0}" HeaderText="题名" DataTextField="BookName" /> 24
<asp:BoundField DataField="BookAuthor" HeaderText="作者" /> 25
<asp:TemplateField HeaderText="出版信息"> 26
<ItemTemplate> 27
<asp:Label ID="Label1" runat="server"><%# Eval("BookPublish") %></asp:Label> 28
<asp:Label ID="Label2" runat="server"><%# Eval("BookPublishDate","{0:yyyy-MM}") %></asp:Label> 29
</ItemTemplate> 30
</asp:TemplateField> 31
<asp:BoundField DataField="BookIndex" HeaderText="索书号" /> 32
</Columns> 33
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" /> 34
<RowStyle BackColor="#EEEEEE" ForeColor="Black" /> 35
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" /> 36
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" /> 37
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" /> 38
<AlternatingRowStyle BackColor="#DCDCDC" /> 39
40
</asp:GridView> 41
42
</td> 43
</tr> 44
</table> 45
</div> 46
</form> 47
</body> 48
</html> 49



