123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LotteryEdit.aspx.cs" Inherits="CB.Admin.Plugins.Lottery.LotteryEdit" %>
- <!DOCTYPE html >
- <html>
- <head id="Head1" runat="server">
- <title>编辑彩种信息</title>
- <link href="../../static/css/main.css" rel="stylesheet" type="text/css" />
- <script src="../../static/js/jquery.js" type="text/javascript"></script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="box">
- <div class="title">
- <span>
- <%=title %>彩种信息</span>
- </div>
- <div class="content">
- <div class="listtable">
- <table style="margin-top: 3px" width="98%" border="0" align="center" cellpadding="0"
- cellspacing="0">
- <tr>
- <td width="100">
- 彩种名称:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtLotteryName" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td width="100">
- 期号:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtTerm" runat="server"></asp:TextBox> <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 区域:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="dpArea" runat="server">
- <asp:ListItem Value="-1">==请选择==</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 是否高频:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="dpFrequency" runat="server">
- <asp:ListItem Value="-1">==请选择==</asp:ListItem>
- <asp:ListItem Value="1">是</asp:ListItem>
- <asp:ListItem Value="0">否</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 是否正常:
- </td>
- <td>
- <div class="left">
- <asp:DropDownList ID="dpStatus" runat="server">
- <asp:ListItem Value="-1">==请选择==</asp:ListItem>
- <asp:ListItem Value="1">是</asp:ListItem>
- <asp:ListItem Value="0">否</asp:ListItem>
- </asp:DropDownList>
- <span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 排序:
- </td>
- <td>
- <div class="left">
- <asp:TextBox ID="txtOrderBy" runat="server" Width="35"></asp:TextBox><span style="color: Red;">(必填)</span></div>
- </td>
- </tr>
- <tr>
- <td>
- 操作:
- </td>
- <td>
- <div class="left">
- <asp:Button ID="btnEdit" runat="server" Text=" 保 存 " OnClick="btnEdit_Click" OnClientClick="ValidataNum()" /><span
- style="margin-left: 5px">
- <asp:Button ID="btnClear" runat="server" Text=" 清 除 " OnClick="btnClear_Click" />
- </span>
- </div>
- <asp:Label ID="labID" runat="server" Text="" Visible="false"></asp:Label>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </form>
- </body>
- </html>
|