LendBook.aspx
上传用户:gooyliu
上传日期:2018-09-29
资源大小:5816k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. <%@ Page Language="C#" MasterPageFile="~/SysOperator/OperatorMasterPage.Master" AutoEventWireup="true" CodeBehind="LendBook.aspx.cs" Inherits="Web.SysOperator.LendBook" Title="借书界面" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
  3.    
  4. <table align="left"  cellpadding ="0" border ="0" >
  5.     
  6.      <tr>
  7.       <td colspan ="2" align ="center" >
  8.         借书操作
  9.       </td>
  10.     </tr>
  11.    
  12.     
  13.     
  14.      <tr>
  15.         <td colspan ="2" style="height: 25px">
  16.             请输入读者编号:
  17.         </td> 
  18.     </tr>
  19.      <tr>
  20.         <td colspan ="2" style="height: 25px">
  21.             <asp:TextBox ID="txtReaderID" runat="server" ></asp:TextBox>
  22.          </td>
  23.     </tr>
  24.     <tr>
  25.         <td colspan ="2">
  26.             请输入图书编号:
  27.         </td> 
  28.     </tr>
  29.      <tr>
  30.         <td colspan ="2">
  31.             <asp:TextBox ID="txtBookID" runat="server" Height="20px" ></asp:TextBox>
  32.          </td>
  33.     </tr>
  34.     
  35.     <tr>
  36.         <td style="width: 64px; height: 25px">
  37.             <asp:ImageButton ID="imgbtnLend" ImageUrl ="~/Images/Borrow.GIF"  runat="server" OnClick="imgbtnLend_Click"  />
  38.          </td>
  39.          <td style="height: 25px">
  40.              <asp:ImageButton ID="ImageReset" ImageUrl ="~/Images/RESET.GIF"  runat="server" OnClick="ImageReset_Click" />
  41.          </td>
  42.     </tr>
  43.     
  44.     <tr>
  45.         <td colspan ="2">
  46.             <asp:Label ID="lblMsg" runat="server" Text="Label" Visible="False" ForeColor="Red"></asp:Label>
  47.          </td>
  48.     </tr>
  49.     
  50.    
  51.     
  52. </table>
  53. </asp:Content>