<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DeskCalendarBindingFee.aspx.cs"
|
Inherits="CY.WebForm.Pages.sysInquiry.DeskCalendarBindingFee" %>
|
|
<!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 () {
|
$("#tbDeskCalendarBindingFeeList").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">
|
<b>装订费</b>
|
</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="RepDeskCalendarBindingFeeList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" usemultcolor="true" id="tbDeskCalendarBindingFeeList">
|
<tr>
|
<th>
|
张数
|
</th>
|
<th>
|
32开
|
</th>
|
<th>
|
24开
|
</th>
|
<th>
|
16开
|
</th>
|
<th style="display: none">
|
</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td>
|
<%#Eval("PageNum")%>
|
</td>
|
<td>
|
<asp:TextBox ID="txtPrice32" Text='<%#GetDecimalStr(Eval("Price32"))%>' runat="server"
|
CssClass="validateFloat"></asp:TextBox>
|
</td>
|
<td>
|
<asp:TextBox ID="txtPrice24" Text='<%#GetDecimalStr(Eval("Price24"))%>' runat="server"
|
CssClass="validateFloat"></asp:TextBox>
|
</td>
|
<td>
|
<asp:TextBox ID="txtPrice16" Text='<%#GetDecimalStr(Eval("Price16"))%>' runat="server"
|
CssClass="validateFloat"></asp:TextBox>
|
</td>
|
<td style="display: none">
|
<asp:Label ID="lblPageNum" Text='<%#Eval("PageNum")%>' runat="server"></asp:Label>
|
</td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</FooterTemplate>
|
</asp:Repeater>
|
<tr>
|
<td>
|
起价
|
</td>
|
<td>
|
<asp:TextBox ID="txtStartPage32" runat="server" CssClass="validateFloat"></asp:TextBox>
|
</td>
|
<td>
|
<asp:TextBox ID="txtStartPage24" runat="server" CssClass="validateFloat"></asp:TextBox>
|
</td>
|
<td>
|
<asp:TextBox ID="txtStartPage16" runat="server" CssClass="validateFloat"></asp:TextBox>
|
</td>
|
</tr>
|
</table>
|
</div>
|
</form>
|
</body>
|
</html>
|