readermodify.aspx
来自「这是一个很好的图书管理系统 数据库SQL2005」· ASPX 代码 · 共 66 行
ASPX
66 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReaderModify.aspx.cs" Inherits="ReaderModify" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>图书信息管理系统-->修改读者信息</title>
</head>
<body>
<form id="form1" runat="server">
<div style="text-align: center">
<table border="1" cellpadding="0" cellspacing="0" style="width: 600px; height: 260px">
<tr>
<td colspan="2" style="width: 600px; height: 30px; background-color: silver;">
<span style="font-size: 18pt">图书信息管理系统--</span>修改读者信息</td>
</tr>
<tr>
<td style="height: 210px; width: 600px;" colspan="2">
<table border="0" cellpadding="0" cellspacing="0" style="width: 550px; height: 180px">
<tr>
<td style="width: 150px; text-align: right">
读者编号:</td>
<td style="width: 400px; text-align: left; height: 30px;">
<asp:Label ID="lblReaderID" runat="server" ForeColor="Blue"></asp:Label></td>
</tr>
<tr style="color: #000000">
<td style="width: 150px; text-align: right">
借书证号:</td>
<td style="width: 400px; text-align: left; height: 30px;">
<asp:Label ID="lblCardID" runat="server" ForeColor="Blue"></asp:Label></td>
</tr>
<tr>
<td style="width: 150px; text-align: right">
姓名:</td>
<td style="width: 400px; text-align: left; height: 30px;">
<asp:TextBox ID="txtname" runat="server" Width="120px"></asp:TextBox><span style="color: red">*<asp:RequiredFieldValidator
ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtname" ErrorMessage="该项不能为空"></asp:RequiredFieldValidator></span></td>
</tr>
<tr>
<td style="width: 150px; text-align: right">
联系电话:</td>
<td style="width: 400px; text-align: left; height: 30px;">
<asp:TextBox ID="txttel" runat="server" Width="120px"></asp:TextBox><span style="color: red"></span></td>
</tr>
<tr>
<td colspan="1" style="width: 150px; text-align: right">
</td>
<td colspan="2" style="width: 400px; height: 30px; text-align: left;">
<asp:Label ID="Label1" runat="server" ForeColor="Red" Text="加*号为必填项"></asp:Label></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" style="width: 600px; height: 30px; background-color: gainsboro;">
<asp:Button ID="btn_Update" runat="server" OnClick="btn_Update_Click" Text="修改信息" />
<a href="ReaderMan.aspx">返回</a></td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?