<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LED.aspx.cs" Inherits="CY.WebForm.Pages.front.LED" %>
|
|
<!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>LED询价</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>
|
</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"/>㎡
|
</td>
|
<td>
|
<select id="ledMaterial" name="ledMaterial" class="selectLaber">
|
<%
|
CY.BLL.Inquiry.SysInquiry_LEDMaterialBLL _LEDMaterialBLL = new CY.BLL.Inquiry.SysInquiry_LEDMaterialBLL();
|
IList<CY.Model.SysInquiry_LEDMaterial> materialList = _LEDMaterialBLL.GetModelList();
|
foreach (CY.Model.SysInquiry_LEDMaterial ma in materialList)
|
{
|
%>
|
<option value="<%=ma.KeyId%>"><%=ma.Name%></option>
|
<%
|
}
|
%>
|
</select>
|
</td>
|
<td>
|
<select id="isInstall" name="isInstall" class="selectLaber">
|
<option value="0">不安装</option>
|
<option value="1">安装</option>
|
</select>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
</body>
|
</html>
|