<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="NewsPaper.aspx.cs" Inherits="CY.WebForm.Pages.front.NewsPaper" %>
|
|
<!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;">
|
纸张
|
</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">
|
<%
|
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 align="center">
|
<div class="xialap">
|
<input type="text" id="Text1" name="pageNum" class="newsPageNum" style="height: 15px; width:80px;" value="8"/>
|
<div class="xialapb">
|
<div class="xialapr">4</div>
|
<div class="xialapr">8</div>
|
<div class="xialapr">12</div>
|
<div class="xialapr">16</div>
|
<div class="xialapr">20</div>
|
<div class="xialapr">24</div>
|
<div class="xialapr">32</div>
|
<div class="xialapr">36</div>
|
<div class="xialapr">40</div>
|
</div>
|
</div>
|
</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">
|
<%--<%
|
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>
|
<select name="printColor0">
|
<option value="四色">四色</option>
|
<option value="单色">单色</option>
|
<option value="双色">双色</option>
|
</select>
|
</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>
|
后道工序
|
</th>
|
</tr>
|
<tr>
|
<td align="left" style="padding-left: 40px;">
|
<input type="checkbox" name="works" value="7"> 折页
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|