⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 st_rcatgaddmodule.ascx

📁 酒店管理系统是采用VS2005和SQL2000开发的
💻 ASCX
字号:
<%@ Control Language="c#" AutoEventWireup="false" CodeFile="ST_RCatgAddModule.ascx.cs" Inherits="ST_GROUP.Modules.ST_RCatgAddModule" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<!--BEGIN RCATEGORYADD MODULE-->
<table cellSpacing="0" cellPadding="5" width="100%">
	<tr >
		<td bgcolor="#ffccff" align="left" height="25" colspan="2">添加客房类型信息
		</td>
	</tr>
	<!-- SPACER ROW -->
	<tr class="rbody">
		<td class="rbodycol" align="center" height="25" colspan="2">&nbsp;
		</td>
	</tr>
	<tr class="rbody">
		<td class="rbodycol" align="center" height="25" colspan="2">
			<P><asp:label id="CreateLabel" enableViewState="false" runat="server" Visible="True">
         请完整填写下列信息,然后单击“添加”按钮来提交要添加的房间类型信息。
	      </asp:label></P>
			<table style="BORDER-RIGHT: #ccccff 1px solid; TABLE-LAYOUT: auto; BORDER-TOP: #ccccff 1px solid; BORDER-LEFT: #ccccff 1px solid; BORDER-BOTTOM: #ccccff 1px solid; BORDER-COLLAPSE: collapse"
				width="100%">
				<tr style="BACKGROUND-COLOR: #ccccff">
					<td width="20%">类型名称:
					</td>
					<td><asp:textbox id="RCatgNameTextBox" enableViewState="false" runat="server" MaxLength="10"></asp:textbox>(必填)
						<asp:requiredfieldvalidator id="RequiredFieldValidator1" runat="server" controlToValidate="RCatgNameTextBox"
							errormessage="类型名称必须填写" display="dynamic">*</asp:requiredfieldvalidator>
						<asp:customvalidator id="IdUniqueCustomValidator" runat="server" ErrorMessage="该类型已存在" ControlToValidate="RCatgNameTextBox"
							OnServerValidate="IsNameValidate">*</asp:customvalidator></td>
				</tr>
				<tr>
					<td width="20%">房间面积(平方米):
					</td>
					<td><asp:textbox id="AreaTextBox" enableViewState="false" runat="server" MaxLength="15"></asp:textbox>(必填)
						<asp:requiredfieldvalidator id="RequiredFieldValidator2" runat="server" controlToValidate="AreaTextBox" errormessage="房间面积必须填写"
							display="dynamic">*</asp:requiredfieldvalidator></td>
				</tr>
				<tr style="BACKGROUND-COLOR: #ccccff">
					<td width="20%">床位(个):
					</td>
					<td><asp:textbox id="BedNumTextBox" enableViewState="false" runat="server" MaxLength="15"></asp:textbox>(必填)
						<asp:requiredfieldvalidator id="RequiredFieldValidator3" runat="server" controlToValidate="BedNumTextBox" errormessage="床位必须填写"
							display="dynamic">*</asp:requiredfieldvalidator></td>
				</tr>
				<tr>
					<td width="20%">价格(元/日):
					</td>
					<td><asp:textbox id="PriceTextBox" enableViewState="false" runat="server" MaxLength="15"></asp:textbox>(必填)
						<asp:requiredfieldvalidator id="RequiredFieldValidator4" runat="server" controlToValidate="PriceTextBox" errormessage="价格必须填写"
							display="dynamic">*</asp:requiredfieldvalidator></td>
				</tr>
				<tr style="BACKGROUND-COLOR: #ccccff">
					<td width="20%">空调:
					</td>
					<td><asp:radiobuttonlist id="AirConditionList" Runat="server" RepeatColumns="2">
							<asp:ListItem Selected="True">有</asp:ListItem>
							<asp:ListItem>无</asp:ListItem>
						</asp:radiobuttonlist>
					</td>
				</tr>
				<tr>
					<td width="20%">有线电视:
					</td>
					<td><asp:radiobuttonlist id="TvList" Runat="server" RepeatColumns="2">
							<asp:ListItem Selected="True">有</asp:ListItem>
							<asp:ListItem>无</asp:ListItem>
						</asp:radiobuttonlist>
					</td>
				</tr>
			</table>
		</td>
	</tr>
	<tr>
		<td colspan="2"><asp:validationsummary id="ValidationSummary1" runat="server" HeaderText="请按下面提示正确填写:"></asp:validationsummary></td>
	</tr>
	<tr>
		<td width="20%">&nbsp;
		</td>
		<td>
			<asp:Button id="SubmitButton" text="添加" BorderStyle="Groove" runat="server"></asp:Button>&nbsp;&nbsp;&nbsp;&nbsp;
			<asp:Button id="ReturnButton" CausesValidation="False" BorderStyle="Groove" text="返回" runat="server"></asp:Button>
		</td>
	</tr>
	<tr>
		<td colspan="2"><asp:label id="ShowMsg" Runat="server"></asp:label></td>
	</tr>
</table>
<!--END RCATEGORYADD MODULE-->

⌨️ 快捷键说明

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