username@email.com
2024-09-24 e52888ec01a11ad8423e30b9505fee9624e88422
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Note.aspx.cs" Inherits="CY.WebForm.Pages.front.Note" %>
 
<!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>
    <table class="table2">
        <tbody>
            <tr>
                <th>请选择印刷方式:&nbsp<input type="radio" name="printMode" value='1'  />合版印刷&nbsp;&nbsp<input type="radio" name="printMode" value='0' checked="true"/>专版印刷</th>
            </tr>
        </tbody>
    </table>
    <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>
                <th style="text-align: center;">
                   印刷颜色
                </th>
            </tr>
            <tr>
                <td>
                   
                    <select class="selectLaber" id="paperSize" name="paperSize">
                        
                    </select>
                </td>
                <td>
                    <select class="selectLaber"  id="paper0MP" name="pNameMP">
                    </select>
                </td>
                <td class="Brand0">
                    <select class="selectLaber" id="brand0" name="brand0">
                         <%--<%
                             CY.BLL.Inquiry.BrandInfoBLL _brandInfoBLL = new CY.BLL.Inquiry.BrandInfoBLL();
                             IList<CY.Model.SysInquiry_BrandInfo> brandList = _brandInfoBLL.GetBrandList().ToList<CY.Model.SysInquiry_BrandInfo>();
                             foreach (CY.Model.SysInquiry_BrandInfo brand in brandList)
                            {
                        %>
                            <option value="<%=brand.KeyId%>"><%=brand.BrandName%></option>
                        <%
                            }
                        %>--%>
                    </select>
                </td>
                  <td class="gramWeight0">
                    <select class="selectLaber" id="gramWeight0" name="gramWeight0">
                    </select>
                </td>
                <td align="center">
                    <table>
                        <tr>
                            <td>
                                <div class="xialap">
                                    <input type="text"  id="printCount" name="printCount" readonly="readonly"  style="height: 15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="500" value="500"/>
                                    <div class="xialapb">
                                        <div class="xialapr">100</div>
                                        <div class="xialapr">200</div>
                                        <div class="xialapr">300</div>  
                                        <div class="xialapr">500</div> 
                                        <div class="xialapr">1000</div> 
                                    </div>
                                </div>
                            </td>
                            <td>
                                <select id='ysUnit' runat="server" name="ysUnit" datatextfield="Name" datavaluefield="MeanValue" keepdefaultstyle='true'></select>
                            </td>
                        </tr>
                    </table>
                    
                </td>
                <td>
                    <input type="text" name="pageNum" style="width:60px" class="validateInt" defaultValue="1" value="1"/>
                </td>
                <td>
                    <select class="selectLaber" name="printColor0">
                        <option value="单色">单色</option>
                        <option value="彩色">彩色</option>
                    </select>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
        <tbody>
             <tr>
                <th colspan="4">
                    后道工序
                </th>
            </tr>
            <tr>
                <td align="left" style="padding-left: 40px;"><input type="checkbox" name="works" value="44" />&nbsp;装订</td>
                <td align="left"><input type="checkbox" name="works" value="24" />&nbsp;套号</td>
                <td align="left"><input type="checkbox" name="works" value="6" />&nbsp;打点线</td>
            </tr>
        </tbody>
    </table>
</body>
</html>