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

.net编程

开发平台:

C#

  1. <%@ Page Language="C#" MasterPageFile="~/Reader/ReaderMasterPage.Master" AutoEventWireup="true" CodeBehind="BorrowHistory.aspx.cs" Inherits="Web.Reader.BorrowHistory" Title="借阅历史" %>
  2. <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
  3.     <asp:GridView ID="gvBorrowHistory" runat="server" AutoGenerateColumns="False" 
  4.         BackColor="White" BorderColor="#999999" BorderWidth="1px" 
  5.         CellPadding="3" GridLines="Vertical" BorderStyle="None" >
  6.         <FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
  7.         <RowStyle BackColor="#EEEEEE" ForeColor="Black" />
  8.         <Columns>
  9.             <asp:BoundField DataField="bookName" HeaderText="题名"  HeaderStyle-Wrap="false" />
  10.             <asp:BoundField DataField="bookIndex" HeaderText="索书号" HeaderStyle-Wrap="false" />
  11.             <asp:BoundField DataField="author" HeaderText="作者"  HeaderStyle-Wrap="false"/>
  12.             <asp:BoundField DataField="abstract" HeaderText="介绍" HeaderStyle-Wrap="false" />
  13.         </Columns>
  14.         
  15.     
  16.     
  17.         <PagerStyle BackColor="#999999" ForeColor="Black" 
  18.             HorizontalAlign="Center" />
  19.         <SelectedRowStyle BackColor="#008A8C" ForeColor="White" Font-Bold="True" />
  20.         <HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" />
  21.         <AlternatingRowStyle BackColor="#DCDCDC" />      
  22.     
  23.     
  24.     </asp:GridView>
  25. </asp:Content>