CreRoom.aspx 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CreRoom.aspx.cs" Inherits="HotelManage.CreRoom" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <style type="text/css">
  7. table{border:solid 1px #747474}
  8. tr{border:solid 1px #747474}
  9. td{border:solid 1px #747474}
  10. #table{ font-size:16px; font-family:微软雅黑; position:relative; top:50px; left:201px;border-radius:15px 15px 0px 0px;}
  11. .tdstyle{ background-color:#c3e6ce}
  12. .text{margin-left: 0px;Height:40px; width:272px; border:0px; font-size:20px; font-family:微软雅黑; background-color:#e9fbee}
  13. .buttom{ background:#00AA68; width:100px; height:30px; cursor:pointer;font-size:20px; font-family:微软雅黑; border:1px solid #CCCCCC;border-radius:8px;}
  14. body{text-align:center; overflow-y:hidden;overflow-X:hidden;}
  15. .gd{font-size:14px; position:relative; top:10px;text-align: center;}
  16. #bk{ border: solid 2px gray;border-radius:15px; width:1170px ; height:630px; position:relative;top:-7px; background-color:#EEEEEE}
  17. #research{ height:400px; background-color:#C8F2D5; width:100%;border-radius:15px 15px 0px 0px; font-size:15px; color:#343434;-webkit-box-shadow:#666 0px 0px 10px;-moz-box-shadow:#666 0px 0px 10px}
  18. </style>
  19. </head>
  20. <body style="text-align: center">
  21. <form id="form1" runat="server">
  22. <div id="bk" class="style2">
  23. <div id="research">
  24. <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
  25. <asp:UpdatePanel ID="UpdatePanel1" runat="server">
  26. <ContentTemplate>
  27. <div id="table">
  28. <table cellpadding="0" cellspacing="0" width="765">
  29. <tr>
  30. <td class="tdstyle" colspan="4" height="52"><span style=" font-size:24px;">房间开通登记表</span></td>
  31. </tr>
  32. <tr>
  33. <td class="tdstyle" width="115" >房间序号:</td>
  34. <td width="270" >
  35. <asp:TextBox ID="TextBox1" runat="server" CssClass="text" ></asp:TextBox>
  36. </td>
  37. <td width="115" class="tdstyle">输入名称:</td>
  38. <td width="270" height="40">
  39. <asp:TextBox ID="TextBox2" runat="server" CssClass="text" placeholder="请输入名称 如:C025" ></asp:TextBox>
  40. </td>
  41. </tr>
  42. <tr>
  43. <td class="tdstyle">选择楼层:</td>
  44. <td class="style3">
  45. <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
  46. CssClass="text">
  47. </asp:DropDownList>
  48. </td>
  49. <td class="tdstyle">房间类型:</td>
  50. <td height="37">
  51. <asp:TextBox ID="TextBox4" runat="server" CssClass="text"></asp:TextBox>
  52. </td>
  53. </tr>
  54. <tr>
  55. <td width="93" style="height:101px;" class="tdstyle">备注信息:</td>
  56. <td colspan="3" >
  57. <asp:TextBox ID="TextBox7" runat="server" Width="660" Height="101"
  58. TextMode="MultiLine" Font-Names="微软雅黑" Font-Size="16pt" BackColor="#e9fbee" ></asp:TextBox>
  59. </td>
  60. </tr>
  61. <tr>
  62. <td colspan="4" style="height:40px" class="tdstyle">
  63. <asp:Button ID="Button1" runat="server" Text="提交" CssClass="buttom"
  64. onclick="Button1_Click" />
  65. &nbsp;
  66. <input type="button" onclick="javascript:window.history.go(-1);"value="返回" class="buttom">
  67. </td>
  68. </tr>
  69. </table>
  70. </div>
  71. </ContentTemplate></asp:UpdatePanel>
  72. </div>
  73. </div>
  74. </form>
  75. </body>
  76. </html>