温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:个人图书管理系统源码
当前文件:
MyLibary/Borrow/BorrowBook.aspx[2K,2009-6-12 11:48:18],打开代码结构图
MyLibary/Borrow/BorrowBook.aspx[2K,2009-6-12 11:48:18],打开代码结构图1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BorrowBook.aspx.cs" Inherits="Borrow_BorrowBook" %> 2
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4
5
<html xmlns="http://www.w3.org/1999/xhtml" > 6
<head runat="server"> 7
<title>无标题页</title> 8
</head> 9
<body leftmargin="0" rightmargin="0" topmargin="10"> 10
<form id="form1" runat="server"> 11
<div> 12
<table id="Table1" style="FONT-SIZE: 12px; FONT-FAMILY: Tahoma; BORDER-COLLAPSE: collapse; " width="400" align="center" border="0" runat="server" bgColor="#f1f0f4"> 13
<tr height="50"> 14
<td align="center" colspan="2"> 15
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/Borrow/BorrowBook.aspx">借书登记</asp:HyperLink> 16
17
<asp:HyperLink ID="HyperLink2" runat="server" NavigateUrl="~/Borrow/ReturnBook.aspx">还书登记</asp:HyperLink></td> 18
</tr> 19
<tr> 20
<td align="center" colspan="2"> 21
<h1><font face="楷体_GB2312"><b>图 书 借 阅 登 记</b></font></h1> 22
<hr width="90%"> 23
</td> 24
</tr> 25
<tr> 26
<td align="right"> 27
读者编号: 28
</td> 29
<td> 30
<asp:TextBox id="txtUserID" runat="server" Width="193px"></asp:TextBox> 31
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="不能为空" ControlToValidate="txtUserID"></asp:RequiredFieldValidator></td> 32
</tr> 33
<tr> 34
<td align="right"> 35
书刊编号: 36
</td> 37
<td> 38
<asp:TextBox id="txtBookID" runat="server" Width="193px"></asp:TextBox> 39
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtBookID" 40
ErrorMessage="不能为空"></asp:RequiredFieldValidator></td> 41
</tr> 42
<tr> 43
<td colspan="2" align="center" style="height: 32px"> 44
<asp:Label ID="lblMessage" runat="server" ForeColor=red></asp:Label><br /> 45
<asp:ImageButton ID="imgBtnBorrow" runat="server" ImageUrl="~/Images/Borrow.GIF" OnClick="imgBtnBorrow_Click" /></td> 46
</tr> 47
<tr height="40"> 48
<td colspan="2" align="center"><hr width="90%"> 49
</td> 50
</tr> 51
</table> 52
</div> 53
</form> 54
</body> 55
</html> 56




