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
53
54
55
56
57
58
59
60
61
62
<%@ 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>