<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DigitalPrintPaperPrice.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.DigitalPrintPaperPrice" %>
|
|
<!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>
|
<tr>
|
<td align="left"><span style="color:Red"><%=GetFastSetMsg(36)%></span></td>
|
</tr>
|
</table>
|
<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="RepDigitalPrintPaperPriceList" runat="server">
|
<HeaderTemplate>
|
<table class="tableStyle" useMultColor="true">
|
<tr>
|
<th>纸张名称</th>
|
<th>单价</th>
|
<th style="display:none"></th>
|
</tr>
|
</HeaderTemplate>
|
<ItemTemplate>
|
<tr>
|
<td><asp:Label ID="lblPaperName" Text='<%#Eval("PaperName")%>' runat="server"></asp:Label></td>
|
<td><asp:TextBox ID="txtPrice" Text='<%#GetDecimalStr(Eval("Price"))%>' runat="server" CssClass="validateFloat"></asp:TextBox></td>
|
<td style="display:none"><asp:Label ID="lblPaperId" Text='<%#Eval("PaperId")%>' runat="server"></asp:Label></td>
|
</tr>
|
</ItemTemplate>
|
<FooterTemplate>
|
</table>
|
</FooterTemplate>
|
</asp:Repeater>
|
</div>
|
</form>
|
</body>
|
</html>
|