<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AdvertisingCup.aspx.cs" Inherits="CY.WebForm.Pages.front.AdvertisingCup" %>
|
|
<!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>
|
</tr>
|
<tr>
|
<td>
|
|
<select class="selectLaber" id="cupType" name="cupType">
|
<%
|
CY.BLL.Inquiry.MultipleTypeInfoBLL _multipleTypeInfoBLL = new CY.BLL.Inquiry.MultipleTypeInfoBLL();
|
IList<CY.Model.SysInquiry_MultipleTypeInfo> typeList= _multipleTypeInfoBLL.GetModelList(7);
|
foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
|
{
|
%>
|
<option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
<td>
|
<select class="selectLaber" id="pNameMP" name="pNameMP">
|
<%
|
|
typeList= _multipleTypeInfoBLL.GetModelList(67);
|
foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
|
{
|
%>
|
<option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
<td align="center">
|
<table>
|
<tr>
|
<td>
|
<div class="xialap">
|
<input type="text" id="printCount" name="printCount" style="height:15px; line-height: 15px; width:80px;" defaultValue="1000" value="1000" class="validateIntSpc"/>
|
<div class="xialapb">
|
<div class="xialapr">1000</div>
|
<div class="xialapr">2000</div>
|
<div class="xialapr">5000</div>
|
<div class="xialapr">10000</div>
|
<div class="xialapr">20000</div>
|
<div class="xialapr">30000</div>
|
<div class="xialapr">50000</div>
|
</div>
|
</div>
|
</td>
|
<td>
|
<select id='ysUnit' runat="server" name="ysUnit" datatextfield="Name" datavaluefield="MeanValue" keepdefaultstyle='true'></select>
|
</td>
|
</tr>
|
</table>
|
|
</td>
|
<td>
|
<select name="printColor0" chg="1" remark="#value#">
|
<option value="单色">单色</option>
|
<option value="双色">双色</option>
|
<option value="三色">三色</option>
|
<option value="四色">四色</option>
|
</select>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|