bookingin.ascx

来自「图书借阅系统!ASP.NET实现的」· ASCX 代码 · 共 29 行

ASCX
29
字号
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="BookingIn.ascx.vb" Inherits="Library.BookingIn" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<TABLE id="Table1" width="70%" align="center">
	<TR>
		<TD align="center">
			<asp:DataGrid id="BookingGrid" CellPadding="4" BackColor="White" BorderWidth="1px" BorderStyle="None"
				BorderColor="#3366CC" Width="100%" AutoGenerateColumns="False" runat="server" CssClass="DatagridTable">
				<SelectedItemStyle Font-Bold="True" ForeColor="#CCFF99" BackColor="#009999"></SelectedItemStyle>
				<ItemStyle ForeColor="#003399" BackColor="White"></ItemStyle>
				<HeaderStyle Font-Bold="True" HorizontalAlign="Center" ForeColor="#CCCCFF" BackColor="#003399"></HeaderStyle>
				<FooterStyle ForeColor="#003399" BackColor="#99CCCC"></FooterStyle>
				<Columns>
					<asp:BoundColumn DataField="UserID" HeaderText="证件号">
						<ItemStyle HorizontalAlign="Center"></ItemStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="Unit" HeaderText="单位">
						<ItemStyle HorizontalAlign="Center"></ItemStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="BookName" HeaderText="题名">
						<ItemStyle HorizontalAlign="Center"></ItemStyle>
					</asp:BoundColumn>
					<asp:BoundColumn DataField="BookAuthor" HeaderText="著者">
						<ItemStyle HorizontalAlign="Center"></ItemStyle>
					</asp:BoundColumn>
				</Columns>
				<PagerStyle HorizontalAlign="Left" ForeColor="#003399" BackColor="#99CCCC" Mode="NumericPages"></PagerStyle>
			</asp:DataGrid></TD>
	</TR>
</TABLE>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?