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

.net编程

开发平台:

C#

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