59 lines
2.2 KiB
Plaintext
59 lines
2.2 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_cardbind.aspx.cs" Inherits="Mtxfw.WebSite._Admin.admin_cardbind" %>
|
|
|
|
<!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>
|
|
<link href="css/style.css" rel="stylesheet" type="text/css" />
|
|
<link href="css/Burgundy.css" rel="stylesheet" type="text/css" />
|
|
<script type="text/javascript">
|
|
var icount = <%=icount %>;
|
|
var ResultCard = "<%=ResultCard %>";
|
|
if (icount != 0) {
|
|
parent.document.getElementById("icount_" + ResultCard).innerHTML = (parseInt(parent.document.getElementById("icount_" + ResultCard).innerHTML) + icount);
|
|
}
|
|
function CheckStartCard()
|
|
{
|
|
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form id="form1" runat="server">
|
|
<div class="main">
|
|
<div class="bt1">绑定卡号</div>
|
|
|
|
<div class="bt3">
|
|
<table width="100%" border="0" cellspacing="1" cellpadding="0">
|
|
<tr>
|
|
<th>输入的卡将会绑定到:<font color='red'><b><asp:Literal ID="Lit_Card" runat="server"/></b></font></th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
开始卡号:<asp:TextBox ID="StartCard" Width="90" Height="20" TextMode="SingleLine" runat="server"></asp:TextBox>
|
|
结束卡号:<asp:TextBox ID="EndCard" Width="90" Height="20" TextMode="SingleLine" runat="server"></asp:TextBox>
|
|
<asp:Button ID="Button2" runat="server" Text="插入卡号" CssClass="btn" OnClick="Btn_charu" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:TextBox ID="Text_CardList" TextMode="MultiLine" Rows="10" Columns="56" runat="server"></asp:TextBox>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<asp:Button ID="Button1" runat="server" Text="确认绑定" CssClass="btn" OnClick="Btn_Bind" />
|
|
<asp:Literal ID="Lit_Message" runat="server">多个卡号请使用 '<font color='red'>,</font>' 号分隔,如 xxx,xxx,xxx</asp:Literal>
|
|
</td>
|
|
</tr>
|
|
<asp:HiddenField ID="Hidd_Card" runat="server" />
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|