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

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AdminBookAdvancedSearch.aspx.cs" Inherits="BookManage_AdminBookAdvancedSearch" %> 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 width="400" style="FONT-SIZE: 12px; FONT-FAMILY: Tahoma; BORDER-COLLAPSE: collapse; " border="0" cellspacing="0" cellpadding="0" align="center" bgColor="#f1f0f4"> 13
<tr> 14
<td align=center> 15
<h1><font face="楷体_GB2312"><b> 书 刊 高 级 搜 索</b></font></h1> 16
<hr width="90%"> 17
</td> 18
</tr> 19
<tr> 20
<td> 21
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="FONT-SIZE: 12px; FONT-FAMILY: Tahoma; BORDER-COLLAPSE: collapse; "> 22
<tr> 23
<td colspan="4"> 24
搜索选项: 25
</td> 26
</tr> 27
<tr> 28
<td> 29
书号: 30
</td> 31
<td> 32
<asp:TextBox id="txtBookID" runat="server" Width="98px"></asp:TextBox></td> 33
<td> 34
书名: 35
</td> 36
<td> 37
<asp:TextBox id="txtBookName" runat="server" Width="98px"></asp:TextBox></td> 38
</tr> 39
<tr> 40
<td> 41
ISBN号: 42
</td> 43
<td> 44
<asp:TextBox id="txtBookISBN" runat="server" Width="98px"></asp:TextBox></td> 45
<TD> 46
作者名: 47
</TD> 48
<td> 49
<asp:TextBox id="txtBookAuthor" runat="server" Width="99px"></asp:TextBox></td> 50
</tr> 51
<tr> 52
<td> 53
出版社: 54
</td> 55
<td> 56
<asp:TextBox id="txtBookPublish" runat="server" Width="96px"></asp:TextBox></td> 57
<td>主题词:</td> 58
<td > 59
<asp:TextBox id="txtBookSubject" runat="server" Width="99px"></asp:TextBox></td> 60
</tr> 61
<tr> 62
<td colSpan="4" align=center><asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Images/search.GIF" OnClick="ImageButton1_Click" /></td> 63
</tr> 64
</table> 65
</td> 66
</tr> 67
<tr> 68
<td> 69
70
<table width="100%" border="0" cellspacing="0" cellpadding="0" > 71
<tr> 72
<td bgcolor="#cccccc" style="HEIGHT: 17px"><font color="#000000">搜索结果:</font></td> 73
</tr> 74
<tr> 75
<td> 76
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="BookID" BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" GridLines="Vertical" OnRowDeleting="GridView1_RowDeleting" Width="399px" > 77
<Columns> 78
<asp:HyperLinkField DataNavigateUrlFields="BookID" DataNavigateUrlFormatString="BookDetails.aspx?bookID={0}" HeaderText="题名" DataTextField="BookName" /> 79
<asp:BoundField DataField="BookISBN" HeaderText="ISBN" > 80
<ItemStyle Wrap="False" /> 81
</asp:BoundField> 82
<asp:BoundField DataField="BookAuthor" HeaderText="作者" > 83
</asp:BoundField> 84
<asp:BoundField DataField="BookPublish" HeaderText="出版社" > 85
<ItemStyle Wrap="False" /> 86
</asp:BoundField> 87
<asp:BoundField DataField="BookPublishDate" HtmlEncode=False DataFormatString="{0:yyyy-MM}" HeaderText="出版时间" > 88
<ItemStyle Wrap="False" /> 89
<HeaderStyle Wrap="False" /> 90
</asp:BoundField> 91
<asp:CommandField ShowDeleteButton="True" HeaderText="删除" > 92
<ItemStyle Wrap="False" /> 93
</asp:CommandField> 94
</Columns> 95
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" /> 96
<RowStyle BackColor="#EEEEEE" ForeColor="Black" /> 97
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" /> 98
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Right" /> 99
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" /> 100
<AlternatingRowStyle BackColor="Gainsboro" /> 101
</asp:GridView></td> 102
</tr> 103
</table> 104
</td> 105
</tr> 106
</table> 107
</div> 108
</form> 109
</body> 110
</html> 111



