1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RoomCardFast.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.RoomCardFast" %>
 
<!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 () {
        $("#tbRoomCardFastList").mergeCell(
            {
                cols: [0]
            }
        );
    }
);
      </script>
</head>
<body>
    <form id="form1" runat="server">
        <div id="scrollContent">
            <table class="table2">
             <tr>
            <td align="left"><span style="color:Red"><%=GetFastSetMsg(35)%></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="RepRoomCardFastList" runat="server">
                <HeaderTemplate>
                    <table class="tableStyle" useMultColor="true" id="tbRoomCardFastList">
                        <tr>
                            <th>印刷尺寸</th>
                            <th>覆膜</th>
                            <th>5000</th>
                            <th>10000</th>
                            <th>20000</th>
                            <th>30000</th>
                            <th>50000</th>
                            <th style="display:none"></th>
                        </tr>
                </HeaderTemplate>
                <ItemTemplate>
                    <tr>
                    <td><%#Eval("PrintArea")%></td>
                    <td><asp:Label ID="lblCoveredTypeName" runat="server" Text='<%#Eval("TypeNmae")%>'></asp:Label></td>
                    <td><asp:TextBox id="txtPrice5000" Text='<%#GetDecimalStr(Eval("Price5000"))%>'  runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
                    <td><asp:TextBox id="txtPrice10000" Text='<%#GetDecimalStr(Eval("Price10000"))%>'  runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
                    <td><asp:TextBox id="txtPrice20000" Text='<%#GetDecimalStr(Eval("Price20000"))%>'  runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
                    <td><asp:TextBox id="txtPrice30000" Text='<%#GetDecimalStr(Eval("Price30000"))%>'  runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
                    <td><asp:TextBox id="txtPrice50000" Text='<%#GetDecimalStr(Eval("Price50000"))%>'  runat="server" CssClass="validateFloat" style="width:60px"></asp:TextBox></td>
                    <td style="display:none"><asp:Label ID="lblCoveredTypeId" runat="server" Text='<%#Eval("CoveredTypeId")%>'></asp:Label></td>
                    <td style="display:none"><asp:Label ID="lblPrintArea" runat="server" Text='<%#Eval("PrintArea")%>'></asp:Label></td>
                    </tr>
                </ItemTemplate>
                <FooterTemplate>
                    </table>
                </FooterTemplate>
            </asp:Repeater>
        </div>
    </form>
</body>
</html>