LendBook1.aspx
上传用户:gooyliu
上传日期:2018-09-29
资源大小:5816k
文件大小:2k
- <%@ Page Language="C#" MasterPageFile="~/SysOperator/OperatorMasterPage.master" AutoEventWireup="true" CodeFile="LendBook.aspx.cs" Inherits="SysOperator_LendBook" Title="lendbook Page" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
- <table align="left" cellpadding ="0" border ="0" >
-
- <tr>
- <td colspan ="2" align ="center" >
- 借书操作
- </td>
- </tr>
-
-
-
- <tr>
- <td colspan ="2" style="height: 25px">
- 请输入读者编号:
- </td>
- </tr>
- <tr>
- <td colspan ="2" style="height: 25px">
- <asp:TextBox ID="txtReaderID" runat="server" ></asp:TextBox>
- </td>
- </tr>
- <tr>
- <td colspan ="2">
- 请输入图书编号:
- </td>
- </tr>
- <tr>
- <td colspan ="2">
- <asp:TextBox ID="txtBookID" runat="server" Height="20px" ></asp:TextBox>
- </td>
- </tr>
-
- <tr>
- <td style="width: 64px; height: 25px">
- <asp:ImageButton ID="imgbtnLend" ImageUrl ="~/Images/Borrow.GIF" runat="server" OnClick="imgbtnLend_Click" />
- </td>
- <td style="height: 25px">
- <asp:ImageButton ID="ImageReset" ImageUrl ="~/Images/RESET.GIF" runat="server" OnClick="ImageReset_Click" />
- </td>
- </tr>
-
- <tr>
- <td colspan ="2">
- <asp:Label ID="lblMsg" runat="server" Text="Label" Visible="False" ForeColor="Red"></asp:Label>
- </td>
- </tr>
-
-
-
- </table>
- </asp:Content>