<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Signboard.aspx.cs" Inherits="CY.WebForm.Pages.front.Signboard" %>
|
|
<!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="thickness">
|
厚度
|
</th>
|
<th style="text-align: center;">
|
字数
|
</th>
|
<th style="text-align: center;">
|
是否安装
|
</th>
|
</tr>
|
<tr>
|
<td>
|
<input id="txtFirstSize" name="txtFirstSize" type="text" class="validateFloat" style="width:50px"/>×<input id="txtSecondSize" name="txtSecondSize" type="text" class="validateFloat" style="width:50px"/>c㎡
|
</td>
|
<td>
|
<select id="signboardCharacter" name="signboardCharacter" class="selectLaber">
|
<%
|
CY.BLL.Inquiry.SysInquiry_SignboardInfoBLL _SignboardInfoBLL = new CY.BLL.Inquiry.SysInquiry_SignboardInfoBLL();
|
IList<string> characterNameList = _SignboardInfoBLL.GetCharacterNameList();
|
foreach (string characterName in characterNameList)
|
{
|
%>
|
<option value="<%=characterName%>"><%=characterName%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
<td class="thickness">
|
<select id="thickness" name="thickness" class="selectLaber"></select>
|
</td>
|
<td><input id="pageNum" name="pageNum" type="text" class="validateInt" style="width:50px"/></td>
|
<td>
|
<select id="isInstall" name="isInstall" class="selectLaber">
|
<option value="0">不安装</option>
|
<option value="1">安装</option>
|
</select>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|