username@email.com
2021-09-22 1bfc8f9c7baad9be7fdb92742cf796f9fdb50df3
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Calendary.aspx.cs" Inherits="CY.WebForm.Pages.front.Calendary" %>
 
<!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>
</head>
<body>
    <input type="hidden" name="printMode" value="0" />
      <table class="table2">
        <tbody>
            <tr>
                <th style="text-align: center;">
                    印刷尺寸
                </th>
                <th style="text-align: center;">
                    纸张
                </th>
                <th style="text-align: center;" class="Brand0">
                    品牌
                </th>
                <th style="text-align: center;" class="gramWeight0">
                    克重
                </th>
                 <th style="text-align: center;">
                    每本张数
                </th>
                <th style="text-align: center;">
                    印刷数量
                </th>
            </tr>
            <tr>
                <td>
                   
                    <select class="selectLaber" id="paperSize" name="paperSize" onchange="PaperSizeChange(this)">
                     </select>
                     <span style="display:none; margin-left:5px" id="divSize">
                           <select class="selectLaber" id="SelSize" name="SelSize"></select><input id="txtFirstSize" name="txtFirstSize" type="text" class="validateInt"  style="width:35px"/>×<input id="txtSecondSize" name="txtSecondSize" type="text" class="validateInt"  style="width:35px"/>mm
                      </span>
                </td>
                <td>
                    <select class="selectLaber"  id="paper0" name="paper0" remark="#value#">
                         <%
                             CY.BLL.Inquiry.RangeofBusinessBLL _rangeofBusinessBLL = new CY.BLL.Inquiry.RangeofBusinessBLL();
                             IList<CY.Model.SysInquiry_PaperInfo> paperInfoList = _rangeofBusinessBLL.GetPaperInfo(PrintTypeId);
                             foreach (CY.Model.SysInquiry_PaperInfo peper in paperInfoList)
                            {
                        %>
                            <option value="<%=peper.PapeId%>"><%=peper.PaperName%></option>
                        <%
                            }
                        %>
                    </select>
                </td>
                <td class="Brand0">
                    <select class="selectLaber" id="brand0" name="brand0">
                    </select>
                </td>
                <td class="gramWeight0">
                    <select class="selectLaber" id="gramWeight0" name="gramWeight0">
                    </select>
                </td>
                <td align="center">
                    <div class="xialap">
                            <input type="text"  id="Text2" name="pageNum" readonly="readonly" style="height: 15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="6" value="6"/>
                            <div class="xialapb">
                                <div class="xialapr">6</div>
                                <div class="xialapr">7</div>
                                <div class="xialapr">12</div>  
                                <div class="xialapr">13</div> 
                            </div>
                     </div>
                </td>
                <td align="center">
                    <input type="text"  id="printCount" name="printCount" style="height:15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="5000" value="5000"/>
                    <select id='ysUnit' runat="server" name="ysUnit" datatextfield="Name" datavaluefield="MeanValue" keepdefaultstyle='true'></select>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
        <tbody>
            <tr>
                <th colspan="2">
                    装订工艺
                </th>
            </tr>
            <tr>
                 <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works" value="60">&nbsp;铁圈 
                </td>
                <td align="left">
                    <input type="checkbox" name="works" value="61">&nbsp;压铁片 
                </td>
            </tr>
        </tbody>
    </table>
</body>
</html>