LotteryEdit.aspx 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LotteryEdit.aspx.cs" Inherits="CB.Admin.Plugins.Lottery.LotteryEdit" %>
  2. <!DOCTYPE html >
  3. <html>
  4. <head id="Head1" runat="server">
  5. <title>编辑彩种信息</title>
  6. <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
  7. <script src="../../static/js/jquery.js" type="text/javascript"></script>
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div class="box">
  12. <div class="title">
  13. <span>
  14. <%=title %>彩种信息</span>
  15. </div>
  16. <div class="content">
  17. <div class="listtable">
  18. <table style="margin-top: 3px" width="98%" border="0" align="center" cellpadding="0"
  19. cellspacing="0">
  20. <tr>
  21. <td width="100">
  22. 彩种名称:
  23. </td>
  24. <td>
  25. <div class="left">
  26. <asp:TextBox ID="txtLotteryName" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td width="100">
  31. 期号:
  32. </td>
  33. <td>
  34. <div class="left">
  35. <asp:TextBox ID="txtTerm" runat="server"></asp:TextBox>&nbsp;&nbsp;<span style="color: Red;">(必填)</span></div>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>
  40. 区域:
  41. </td>
  42. <td>
  43. <div class="left">
  44. <asp:DropDownList ID="dpArea" runat="server">
  45. <asp:ListItem Value="-1">==请选择==</asp:ListItem>
  46. </asp:DropDownList>
  47. <span style="color: Red;">(必填)</span></div>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td>
  52. 是否高频:
  53. </td>
  54. <td>
  55. <div class="left">
  56. <asp:DropDownList ID="dpFrequency" runat="server">
  57. <asp:ListItem Value="-1">==请选择==</asp:ListItem>
  58. <asp:ListItem Value="1">是</asp:ListItem>
  59. <asp:ListItem Value="0">否</asp:ListItem>
  60. </asp:DropDownList>
  61. <span style="color: Red;">(必填)</span></div>
  62. </td>
  63. </tr>
  64. <tr>
  65. <td>
  66. 是否正常:
  67. </td>
  68. <td>
  69. <div class="left">
  70. <asp:DropDownList ID="dpStatus" runat="server">
  71. <asp:ListItem Value="-1">==请选择==</asp:ListItem>
  72. <asp:ListItem Value="1">是</asp:ListItem>
  73. <asp:ListItem Value="0">否</asp:ListItem>
  74. </asp:DropDownList>
  75. <span style="color: Red;">(必填)</span></div>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td>
  80. 排序:
  81. </td>
  82. <td>
  83. <div class="left">
  84. <asp:TextBox ID="txtOrderBy" runat="server" Width="35"></asp:TextBox><span style="color: Red;">(必填)</span></div>
  85. </td>
  86. </tr>
  87. <tr>
  88. <td>
  89. 操作:
  90. </td>
  91. <td>
  92. <div class="left">
  93. <asp:Button ID="btnEdit" runat="server" Text=" 保 存 " OnClick="btnEdit_Click" OnClientClick="ValidataNum()" /><span
  94. style="margin-left: 5px">
  95. <asp:Button ID="btnClear" runat="server" Text=" 清 除 " OnClick="btnClear_Click" />
  96. </span>
  97. </div>
  98. <asp:Label ID="labID" runat="server" Text="" Visible="false"></asp:Label>
  99. </td>
  100. </tr>
  101. </table>
  102. </div>
  103. </div>
  104. </div>
  105. </form>
  106. </body>
  107. </html>