username@email.com
2022-01-21 b18a7c8e54b51a5caa400e55cb8cc428c0301a0c
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BrandInfoEdit.aspx.cs" Inherits="CY.WebForm.Pages.sysInquiry.BrandInfoEdit" %>
 
<!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>
    <uc:CMSHead ID="CMSHead1" runat="server"/>
</head>
<body>
    <form id="form1" runat="server" class="form">
    <table class="tableStyle">
                <tr><td class="ali03">纸张类别:</td><td><asp:DropDownList ID="ddlPaperType" 
                        runat="server" CssClass="Sreq" msg="请选择纸张类别" keepdefaultstyle='true' 
                        onselectedindexchanged="ddlPaperType_SelectedIndexChanged" AutoPostBack="true"></asp:DropDownList></td></tr>
                <tr><td class="ali03">纸张名称:</td><td><asp:DropDownList ID="ddlPaper" runat="server" 
                        CssClass="Sreq" msg="请选择纸张" keepdefaultstyle='true' AutoPostBack="true" 
                        onselectedindexchanged="ddlPaper_SelectedIndexChanged"></asp:DropDownList></td></tr>
                <tr><td class="ali03">名称:</td><td><input runat="server" id="txtBrandName" type="text" style="width:200px" class="req" msg="品牌名称不能为空"/></td></tr>
                <tr><td class="ali03 ">是否有效:</td><td><asp:DropDownList ID="ddlStatus" runat="server" keepdefaultstyle='true'><asp:ListItem Value="1" Text="有效"></asp:ListItem><asp:ListItem Value="0" Text="无效"></asp:ListItem></asp:DropDownList></td></tr>
                <tr><td class="ali03 ">排序顺序:</td><td><input id="txtOrerNum" type="text" runat="server" class="req int" msg="排序不能为空"  value="1" /></td></tr>
                <tr><td class="ali03">是否默认品牌:</td><td><asp:DropDownList ID="ddlDefaultBrand" runat="server" keepdefaultstyle='true'>
                                    <asp:ListItem Value="0">否</asp:ListItem>
                                    <asp:ListItem Value="1">是</asp:ListItem>
                </asp:DropDownList></td></tr>
                <tr><td class="ali03"></td><td><asp:Button ID="btnSubmit" Text="提交" runat="server" OnClick="btnSubmit_Click" />&nbsp;&nbsp;<input type="button" id="btnClose" value="关闭" onclick="RefreshDIVOpener();"/></td></tr>
     </table>
    </form>
</body>
</html>