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

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BookSearch.aspx.cs" Inherits="BookManage_BookSearch" %> 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
<table id="Table3" width="520" align="center" border="0" runat="server" bgColor="#f1f0f4"> 12
<tr> 13
<td vAlign="top" align="center" style="width: 516px; height: 406px;"> 14
<table id="table1" border="0" runat="server"> 15
<tr> 16
<td align="center" style="width: 501px"> 17
<br> 18
<h1><font face="楷体_GB2312"><b>馆 藏 书 刊 目 录 查 询</b></font></h1> 19
</td> 20
</tr> 21
<tr height="40"> 22
<td align="center" style="width: 501px"><hr width="90%"> 23
</td> 24
</tr> 25
<tr> 26
<td align="center" style="width: 501px; height: 213px;"><br> 27
<table id="table2" runat="server" border="0"> 28
<tr height="30"> 29
<td> 30
<asp:Label id="Label1" runat="server" BackColor="#f1f0f4" Font-Size="10pt">请选择文献类型:</asp:Label> 31
</td> 32
<td align=left> 33
<asp:RadioButtonList ID="rblClassify" runat="server" Font-Size="10pt" RepeatDirection="Horizontal"> 34
<asp:ListItem Value="1" Selected="True">所有书刊</asp:ListItem> 35
<asp:ListItem Value="2">中文图书</asp:ListItem> 36
<asp:ListItem Value="3">西文图书</asp:ListItem> 37
<asp:ListItem Value="4">中文期刊</asp:ListItem> 38
<asp:ListItem Value="5">西文期刊</asp:ListItem> 39
</asp:RadioButtonList> 40
</td> 41
</tr> 42
<tr height="30"> 43
<td style="height: 30px"> 44
<asp:Label id="Label2" runat="server" BackColor="#f1f0f4" Font-Size="10pt">请选择查询类型:</asp:Label> 45
</td> 46
<td align=left style="height: 30px"> 47
<asp:DropDownList id="ddlType" runat="server" Width="112px" BackColor="#f1f0f4" Font-Size="10pt"> 48
<asp:ListItem Value="BookName" Selected="True">题名</asp:ListItem> 49
<asp:ListItem Value="BookISBN">ISBN</asp:ListItem> 50
<asp:ListItem Value="BookAuthor">作者</asp:ListItem> 51
<asp:ListItem Value="BookPublish">出版社</asp:ListItem> 52
<asp:ListItem Value="BookIndex">索取号</asp:ListItem> 53
<asp:ListItem Value="BookSeries">丛书名</asp:ListItem> 54
</asp:DropDownList></td> 55
</tr> 56
<tr height="30"> 57
<td> 58
<asp:Label id="Label3" runat="server" BackColor="#f1f0f4" Font-Size="10pt">请输入查询内容:</asp:Label> 59
</td> 60
<td align=left> 61
<asp:TextBox id="txtContent" runat="server" Width="200px" AutoPostBack="True" BackColor="#f1f0f4" 62
Font-Size="10pt"></asp:TextBox> 63
<asp:imagebutton id="btnConfirm" runat="server" ImageUrl="~/Images/CONFIRM.GIF" OnClick="confirm_Click"></asp:imagebutton></td> 64
</tr> 65
<tr height="30"> 66
<td> 67
<asp:Label id="Label4" runat="server" BackColor="#f1f0f4" Font-Size="10pt">请选择查询模式:</asp:Label> 68
</td> 69
<td align=left> 70
<asp:RadioButtonList ID="rblMode" runat="server" Font-Size="10pt" RepeatDirection="Horizontal"> 71
<asp:ListItem Selected="True" Value="1">前方一致</asp:ListItem> 72
<asp:ListItem Value="2">任意匹配</asp:ListItem> 73
</asp:RadioButtonList></td> 74
</tr> 75
</table> 76
</td> 77
</tr> 78
<tr height="40"> 79
<td align="center" style="width: 501px; height: 40px"><hr width="90%"> 80
</td> 81
</tr> 82
</table> 83
</td> 84
</tr> 85
</table> 86
<asp:Image ID="Image1" runat="server" Style="z-index: 100; left: 0px; position: absolute; 87
top: 0px" /> 88
</form> 89
</body> 90
</html> 91



