<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FrontCost.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.FrontCost" %>
|
|
<!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" />
|
</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="RepFrontCostList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true">
|
<tr>
|
<th>封面种类</th>
|
<th>印刷要求</th>
|
<th>64开</th>
|
<th>48开</th>
|
<th>32开</th>
|
<th>16开</th>
|
<th>8开</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><asp:Label ID="lblFrontTypeName" Text='<%#Eval("FrontTypeName")%>' runat="server"></asp:Label></td>
|
<td><asp:Label ID="lblPrintDemand" Text='<%#Eval("PrintDemand")%>' runat="server"></asp:Label></td>
|
<td><asp:TextBox ID="txtPrice64" Text='<%#GetDecimalStr(Eval("Price64"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice48" Text='<%#GetDecimalStr(Eval("Price48"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice32" Text='<%#GetDecimalStr(Eval("Price32"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice16" Text='<%#GetDecimalStr(Eval("Price16"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice8" Text='<%#GetDecimalStr(Eval("Price8"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|