📄 addbook.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="addbook.aspx.cs" Inherits="Manager_addbook" %>
<!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 id="container">
<div id="header" align="center"><asp:Image ID="topimage" runat="server" Height=100px Width=100% ImageUrl="~/Images/image.jpg" /></div>
<div id="tips" align="center"><asp:Button ID="showallbutton" runat="server" Text="所有书籍信息" OnClick="showallbutton_Click"/>
<asp:Button ID="manageborrowbutton" runat="server" Text="管理借书申请" OnClick="manageborrowbutton_Click"/>
<asp:Button ID="managereturnbutton" runat="server" Text="管理还书申请" OnClick="managereturnbutton_Click" />
<asp:Button ID="addbookbutton" runat="server" Text="添加图书入库" OnClick="addbookbutton_Click" />
<asp:Button ID="logoutbutton" runat="server" Text="注销登录页面" OnClick="logoutbutton_Click" />
</div>
<div id="main" align="center">
<br />
<br />
<br />
<br />
<br />
<table>
<tr>
<td style="width: 100px" align="right">
<asp:Label ID="Label1" runat="server" Text="货物编号:"></asp:Label></td>
<td style="width: 100px" align="left">
<asp:TextBox ID="booknumtextbox" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 100px" align="right">
<asp:Label ID="Label2" runat="server" Height="19px" Text="货物名称:"></asp:Label></td>
<td style="width: 100px" align="left">
<asp:TextBox ID="booknametextbox" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 100px" align="right">
<asp:Label ID="Label3" runat="server" Text="货物类别:"></asp:Label></td>
<td style="width: 100px" align="left">
<asp:DropDownList ID="DropDownList1" runat="server" Width="86px">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 100px" align="right">
<asp:Button ID="bookaddbutton" runat="server" OnClick="bookaddbutton_Click" Text="入库" /></td>
<td style="width: 100px" align="left">
<asp:Button ID="revbutton" runat="server" OnClick="revbutton_Click" Text="清空" /></td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -