<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusinessCardFast.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.BusinessCardFast" %>
|
|
<!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>
|
<uc:CMSHead ID="CMSHead1" runat="server" />
|
<script src="../../js/hb.js" type="text/javascript"></script>
|
<script type="text/javascript">
|
$(
|
function () {
|
$("#tbBusinessCardList").mergeCell(
|
{
|
cols: [0]
|
}
|
);
|
parent.iframeHeight('Ifr2');
|
parent.parent.iframeHeight('frmrightChild');
|
}
|
);
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div id="scrollContent">
|
<table class="table2">
|
<tr>
|
<td align="left"><span style="color:Red"><%=GetFastSetMsg(13)%></span></td>
|
<td style="width: 50px;">
|
<asp:Button ID="btnSave" Text="保存" runat="server" CssClass="Btn" OnClick="btnSave_Click" OnClientClick="showWait();"/>
|
</td>
|
</tr>
|
</table>
|
<asp:Repeater ID="RepBusinessCardFastList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true" id="tbBusinessCardList">
|
<tr>
|
<th>纸张</th>
|
<th>单双面</th>
|
<th>2盒</th>
|
<th>5盒</th>
|
<th>10盒</th>
|
<th>20盒</th>
|
<th>50盒</th>
|
<th>100盒</th>
|
<th>200盒</th>
|
<th>500盒</th>
|
<th style="display:none"></th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><%#Eval("PaperName")%></td>
|
<td><asp:Label ID="lblSingleOrDouble" runat="server" Text='<%#Eval("SingleOrDouble")%>'></asp:Label></td>
|
<td><asp:TextBox id="txtPrice2" Text='<%#GetDecimalStr(Eval("Price2"))%>' runat="server" CssClass="validateFloat" style="width:60px"/></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice5" Text='<%#GetDecimalStr(Eval("Price5"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice10" Text='<%#GetDecimalStr(Eval("Price10"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice20" Text='<%#GetDecimalStr(Eval("Price20"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice50" Text='<%#GetDecimalStr(Eval("Price50"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice100" Text='<%#GetDecimalStr(Eval("Price100"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice200" Text='<%#GetDecimalStr(Eval("Price200"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td><asp:TextBox id="txtPrice500" Text='<%#GetDecimalStr(Eval("Price500"))%>' runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
|
<td style="display:none"><asp:Label ID="lblPaper" runat="server" Text='<%#Eval("PaperName")%>'></asp:Label></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|