<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="GraphicDesigner.aspx.cs" Inherits="CY.WebForm.Pages.front.GraphicDesigner" %>
|
|
<!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;" class="pmYM">
|
页码
|
</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(27);
|
foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
|
{
|
%>
|
<option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>--%>
|
<td>
|
<select class="selectLaber" id="Select1" name="sjType">
|
<%
|
CY.BLL.Inquiry.MultipleTypeInfoBLL _multipleTypeInfoBLL = new CY.BLL.Inquiry.MultipleTypeInfoBLL();
|
IList<CY.Model.SysInquiry_MultipleTypeInfo> typeList =_multipleTypeInfoBLL.GetModelList(52);
|
foreach (CY.Model.SysInquiry_MultipleTypeInfo typeModel in typeList)
|
{
|
%>
|
<option value="<%=typeModel.KeyId%>"><%=typeModel.TypeNmae%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
<td align="center" class="pmYM">
|
<input type="text" name="pageNum" style="height: 15px; line-height: 15px; width:80px;" class="validateInt" defaultValue="10" value="10"/>P
|
</td>
|
<td>
|
<select name="designerDemand">
|
<option value="数码印刷">数码印刷</option>
|
<option value="黑白文稿">黑白文稿</option>
|
<option value="不出样">不出样</option>
|
</select>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|