fullrooms.aspx

来自「酒店管理系统」· ASPX 代码 · 共 46 行

ASPX
46
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="fullRooms.aspx.cs" Inherits="fullRooms" %>

<!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">
    <table>
    <tbody>
    <tr><td>
        <asp:Label ID="Label1" runat="server" Text="Label">选择日期</asp:Label>
        <asp:TextBox ID="TextBox1" runat="server" ReadOnly="True"></asp:TextBox>
        <asp:Button ID="Button1" runat="server" Text="..." OnClick="Button1_Click" />
        <asp:Calendar ID="Calendar1" runat="server" Visible="False" OnSelectionChanged="Calendar1_SelectionChanged"></asp:Calendar>
    </td></tr>
    
    <tr><td>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; 
        <asp:Button ID="Button2" runat="server" Text="查询当日客满率" OnClick="Button2_Click" /></td></tr>
    
    <tr><td>
        <asp:Table ID="Table1" runat="server" GridLines="Both">
            <asp:TableRow runat="server">
                <asp:TableCell runat="server">房间号</asp:TableCell>
                <asp:TableCell runat="server">房客姓名</asp:TableCell>
                <asp:TableCell runat="server">入住时间</asp:TableCell>
                <asp:TableCell runat="server">(预计)离开时间</asp:TableCell>
            </asp:TableRow>
        </asp:Table>
    </td></tr>
        
    <tr><td>
        <asp:Label ID="Label2" runat="server" Text="Label">客满率为</asp:Label>
        &nbsp;
        <asp:TextBox ID="TextBox2" runat="server" ReadOnly="True" Width="224px"></asp:TextBox>
    </td></tr>
    </tbody>
    </table>    
    </form>
</body>
</html>

⌨️ 快捷键说明

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