⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pa01_addorg.aspx

📁 简单的cI真的是很简单 你想要就下载吧
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PA01_AddOrg.aspx.cs" Inherits="PA01_AddOrg" %>
<link href="../../App_Themes/Style/Style.css" rel="stylesheet" type="text/css" />

<!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>
    <style type="text/css">
        .style1
        {
            width:40%;
        }
    </style>
</head>

<body>
    <form id="form1" runat="server">
    <div>  
        <table class="widthTable" id="tb_addOrg" runat="server">
                <tr class="SubTitle">
                    <td colspan="2">新组织添加</td>
                </tr>
                    <tr>
                    <td>组织名称:</td>
                    <td>
                        <asp:TextBox ID="txt_orgName" runat="server"></asp:TextBox>
                        <asp:Label ID="lbl_orgNameMsg" runat="server" ForeColor="Red"></asp:Label>
                    </td>
                    </tr>
                    <tr>
                        <td>是否是分支组织:</td>
                        <td><asp:DropDownList ID="ddl_isSubOrg" CssClass="DropDownList" runat="server" 
                                AutoPostBack="True" onselectedindexchanged="ddl_isSubOrg_SelectedIndexChanged">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>所在区域:</td>
                        <td>
                            <asp:TextBox ID="txt_regionName" runat="server"></asp:TextBox>
                            <asp:Label ID="lbl_regionName_Msg" runat="server" ForeColor="Red"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td>上级组织:</td>
                        <td>
                            <asp:Label ID="lbl_ReportTo" runat="server"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td>是否有创建订单的权限:</td>
                        <td><asp:DropDownList ID="ddl_canCreateOrder" CssClass="DropDownList" runat="server">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>是否有备货权限:</td>
                        <td>
                            <asp:DropDownList ID="ddl_canReplayRequire" CssClass="DropDownList" runat="server">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>是否有发货权限:</td>
                        <td>
                            <asp:DropDownList ID="ddl_canInputTransportInfo" CssClass="DropDownList" runat="server">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>是否有确认收货信息的权限:</td>
                        <td>
                            <asp:DropDownList ID="ddl_CanConfirmReceive" CssClass="DropDownList" runat="server">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            是否有关闭订单的权限:</td>
                        <td>
                            <asp:DropDownList ID="ddl_canCloseOrder" CssClass="DropDownList" runat="server">
                                <asp:ListItem Selected="True" Value="0">否</asp:ListItem>
                                <asp:ListItem Value="1">是</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="2" align="center">
                            <asp:Button ID="btn_next" runat="server" CssClass="Button" Text="下一步" onclick="btn_next_Click" />
                        </td>
                    </tr>
        </table>

        
        <table id="tb_sureInfo" class="widthTable" runat="server">
                       <tr>
                <td colspan="2" class="SubTitle">组织信息确认</td>
            </tr>
            <tr>
                <td class="style1">
                    组织名称:</td>
                <td>
                   <asp:Label ID="lbl_orgName" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否是分支组织:</td>
                <td>
                    <asp:Label ID="lbl_isSubOrg" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    所在区域:</td>
                <td>
                     <asp:Label ID="lbl_regionID" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    上级组织:</td>
                <td>
                    <asp:Label ID="lbl_RereportTo" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否有创建订单的权限:</td>
                <td>
                    <asp:Label ID="lbl_canCreateOrder" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否有备货权限:</td>
                <td>
                    <asp:Label ID="lbl_canReplayRequire" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否有发货权限:</td>
                <td>
                    <asp:Label ID="lbl_canInputTransportInfo" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否有确认收货信息的权限:</td>
                <td>
                     <asp:Label ID="lbl_CanConfirmReceive" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td class="style1">
                    是否有关闭订单的权限:</td>
                <td>
                    <asp:Label ID="lbl_canCloseOrder" runat="server"></asp:Label>
                </td>
            </tr>
            <tr>
                <td colspan="2" align="center">
                    <asp:Button ID="btn_back" runat="server" CssClass="Button" Text="返回" onclick="btn_back_Click" />
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                    <asp:Button ID="btn_AddComit" runat="server" CssClass="Button" Text="提交" 
                        onclick="btn_AddComit_Click" />
                </td>

            </tr>
            </table>
            
            
            


    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -