<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ColorCostByCup.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.ColorCostByCup" %>
|
|
<!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="RepColorCostList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true">
|
<tr>
|
<th style="width:60px">色数类型</th>
|
<th style="width:60px">3盎司</th>
|
<th style="width:60px">5盎司</th>
|
<th style="width:60px">7盎司</th>
|
<th style="width:60px">9盎司</th>
|
<th style="width:60px">12盎司</th>
|
<th style="width:60px">14盎司</th>
|
<th style="width:60px">16盎司</th>
|
<th style="width:60px">17盎司</th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><asp:Label ID="lblColorName" Text='<%#Eval("ColorName")%>' runat="server"></asp:Label></td>
|
<td><asp:TextBox ID="txtPrice8" Width="60px" Text='<%#GetDecimalStr(Eval("Price8"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice9" Width="60px" Text='<%#GetDecimalStr(Eval("Price9"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice10" Width="60px" Text='<%#GetDecimalStr(Eval("Price10"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice11" Width="60px" Text='<%#GetDecimalStr(Eval("Price11"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice12" Width="60px" Text='<%#GetDecimalStr(Eval("Price12"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice13" Width="60px" Text='<%#GetDecimalStr(Eval("Price13"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice14" Width="60px" Text='<%#GetDecimalStr(Eval("Price14"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
<td><asp:TextBox ID="txtPrice15" Width="60px" Text='<%#GetDecimalStr(Eval("Price15"))%>' runat="server" CssClass="validateFloat" ></asp:TextBox></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|