username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
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
121
122
123
124
125
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusinessCard.aspx.cs" Inherits="CY.WebForm.Pages.front.BusinessCard" %>
 
<!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="1" />
    <table class="table2">
        <tbody>
            <tr>
                <th style="text-align: center;">
                    成品尺寸
                </th>
                <th style="text-align: center;">
                    印刷材质
                </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">
                        <%
                            CY.BLL.Inquiry.PaperSizeDetailBLL _paperSizeDetailBLL=new CY.BLL.Inquiry.PaperSizeDetailBLL();
                            List<CY.Model.SysInquiry_PaperSizeDetail> paperSizeList = _paperSizeDetailBLL.GetPaperSizeList(PrintTypeId);
                            foreach (CY.Model.SysInquiry_PaperSizeDetail size in paperSizeList)
                            {
                        %>
                        <option value="<%=size.KeyId%>"><%=size.Name%></option>
                        <%
                            }
                        %>
                    </select>
                </td>
                <td>
                    <select class="selectLaber"  id="pNameMP" name="pNameMP">
                        <option value="300克铜版纸">300克铜版纸</option>
                        <option value="300克铜版纸覆哑膜">300克铜版纸覆哑膜</option>
                        <option value="250克荷兰白卡纸">250克荷兰白卡纸</option>
                        <option value="250克布纹纸">250克布纹纸</option>
                        <option value="250克冰白纸">250克冰白纸</option>
                        <option value="300克白钢古">300克白钢古</option>
                        <option value="250克白星彩棉纸">250克白星彩棉纸</option>
                        <option value="300克奶白安格">300克奶白安格</option>
                        <option value="铜板纸哑膜局部UV">铜板纸哑膜局部UV</option>
                    </select>
                </td>
                <td align="center">
                    <div class="xialap">
                    <input type="text"  id="printCountByBox" name="printCountByBox" readonly="readonly"  style="height: 15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="5" value="5"/>
                    <div class="xialapb">
                        <div class="xialapr">2</div>
                        <div class="xialapr">5</div>
                        <div class="xialapr">10</div>  
                        <div class="xialapr">20</div> 
                        <div class="xialapr">50</div> 
                        <div class="xialapr">100</div>
                        <div class="xialapr">200</div>
                        <div class="xialapr">500</div>
                    </div>
                    </div>
                </td>
                 <td>
                   <input type="text" name="printBoxNumber" class="validateInt" defaultValue="1" value="1" />
                </td>
                <td>
                    <select class="selectLaber" name="singleOrdouble0">
                        <option value="单面">单面</option>
                        <option value="双面" selected="selected">双面</option>
                    </select>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
        <tbody>
            <tr>
                <th colspan="5">
                    后道工序
                </th>
            </tr>
            <tr>
                 <td align="left" style="padding-left: 40px;">
                    <input type="checkbox" name="works" value="4" />&nbsp;压痕
                </td>
                 <td align="left">
                    <input type="checkbox" name="works" value="5" />&nbsp;模切‖啤异型 
                </td>
                 <td align="left">
                    <input type="checkbox" name="works" value="31" />&nbsp;打孔 
                </td>
                <td align="left">
                    <input type="checkbox" name="works" value="6" />&nbsp;打点线
                </td>
                <td align="left">
                    <input type="checkbox" name="works" value="24" />&nbsp;套号
                </td>
               
            </tr>
            <tr>
                 <td align="left" style="padding-left: 40px;">
                  <input name="works" type="checkbox" value="8"/> 烫金
                  </td>
                  <td align="left">
                  <input name="works" type="checkbox" value="20"/> 烫银
                  </td>
                  <td align="left" colspan="3">
                  <input name="works" type="checkbox" value="30"/> 切圆角
                  </td>
            </tr>
        </tbody>
    </table>
</body>
</html>