username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<%@ 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>