⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bookmanagement.aspx

📁 基于web的图书管理系统 (SQL Server 2000)
💻 ASPX
字号:
<%@ Page language="c#" Codebehind="BookManagement.aspx.cs" AutoEventWireup="false" Inherits="WebApplication1.BookManagement" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>BookManagement</title>
		<meta content="False" name="vs_snapToGrid">
		<meta content="True" name="vs_showGrid">
		<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
		<meta content="C#" name="CODE_LANGUAGE">
		<meta content="JavaScript" name="vs_defaultClientScript">
		<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
		<LINK href="css/mm.css" type="text/css" rel="stylesheet">
	</HEAD>
	<body text="#00" bgColor="#c1da90" scroll="yes" ms_positioning="GridLayout">
		<form id="Form1" method="post" runat="server">
			<asp:datagrid id="DataGrid1" runat="server" Height="200px" AllowPaging="True" AllowSorting="True"
				CssClass="td" AutoGenerateColumns="False" Width="1176px" PageSize="8">
				<HeaderStyle CssClass="ct" BackColor="#C1DA90"></HeaderStyle>
				<Columns>
					<asp:BoundColumn DataField="BookID" SortExpression="BookID" HeaderText="图书编号">
						<HeaderStyle Width="100px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="BookName" SortExpression="BookName" HeaderText="书名">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="Type" SortExpression="Type" HeaderText="类别">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="TPI" SortExpression="TPI" HeaderText="出版社">
						<HeaderStyle Width="85px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="Writer" SortExpression="Writer" HeaderText="作者">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="Price" SortExpression="Price" HeaderText="单价">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="pDate" SortExpression="pDate" HeaderText="出版日期">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="memo" SortExpression="memo" HeaderText="推荐级别">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="state" SortExpression="state" HeaderText="状态">
						<HeaderStyle Width="80px"></HeaderStyle>
					</asp:BoundColumn>
					<asp:TemplateColumn>
						<HeaderStyle HorizontalAlign="Center" Width="40px"></HeaderStyle>
						<HeaderTemplate>
							<FONT face="宋体">修改</FONT>
						</HeaderTemplate>
						<ItemTemplate>
							<asp:ImageButton id="ib_Edit" runat="server" AlternateText="修改" CommandName="Edit" ImageUrl="images/edit.gif"></asp:ImageButton>
						</ItemTemplate>
					</asp:TemplateColumn>
					<asp:TemplateColumn>
						<HeaderStyle HorizontalAlign="Center" Width="40px"></HeaderStyle>
						<HeaderTemplate>
							<FONT face="宋体">删除</FONT>
						</HeaderTemplate>
						<ItemTemplate>
							<asp:ImageButton id="ib_delete" runat="server" AlternateText="删除" CommandName="Delete" ImageUrl="images/delete.gif"></asp:ImageButton>
						</ItemTemplate>
					</asp:TemplateColumn>
				</Columns>
				<PagerStyle Mode="NumericPages"></PagerStyle>
			</asp:datagrid>
			<asp:Button id="Button2" style="Z-INDEX: 101; LEFT: 56px; POSITION: absolute; TOP: 312px" runat="server"
				Width="32px" Height="24px" Text="Button"></asp:Button>
		</form>
	</body>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -