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

📄 usercontrol_editorginfo.ascx

📁 简单的cI真的是很简单 你想要就下载吧
💻 ASCX
字号:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UserControl_EditOrgInfo.ascx.cs" Inherits="UserControl_EditOrgInfo" %>
<style type="text/css">
    .style1
    {
        width: 66%;
    }
    .style2
    {
        height: 29px;
        font-size:x-large;
        text-align:center;
    }
    .style3
    {
    	text-align:right;
    	height:10px;
    	width:300px;
    }
    .style4
    {
        width: 155px;
        height: 10px;
    }
</style>
<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex="0" 
    CancelButtonText=" 取消|关闭" FinishCompleteButtonText="提交信息" 
    FinishPreviousButtonText="上一步" Height="82px" StartNextButtonText="下一步" 
    Width="608px">
    <WizardSteps>
        <asp:WizardStep runat="server" title="1.编辑组织信息">
            <table ID="tb_editOrgInfo" align="center" border="1" cellpadding="0" 
                cellspacing="0" class="style1">
                <tr class="style2">
                    <td colspan="2">
                        编辑组织信息</td>
                </tr>
                <tr>
                    <td class="style3">
                        组织ID:</td>
                    <td class="style4">
                        <asp:Label ID="lbl_orgID" runat="server" Width="150px"></asp:Label>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        组织名称:</td>
                    <td class="style4">
                        <asp:TextBox ID="txt_orgName" runat="server" Width="150px"></asp:TextBox>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        是否是分支组织:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_IsSubOrg" runat="server" Width="150px">
                            <asp:ListItem Value="1">是分支组织</asp:ListItem>
                            <asp:ListItem Value="0">不是分支组织</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        所在区域:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_RegionID" runat="server" Width="150px">
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        上级组织:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_ReportsTo" runat="server" Width="150px">
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        能否创建订单:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_CanCreateOrder" runat="server" Width="150px">
                            <asp:ListItem Value="1">可以创建订单</asp:ListItem>
                            <asp:ListItem Value="0">不可以创建订单</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        是否可以备货:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_CanReplayRequire" runat="server" Width="150px">
                            <asp:ListItem Value="1">可以备货</asp:ListItem>
                            <asp:ListItem Value="0">不能备货</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        是否可以发货:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_CanInputTransportInfo" runat="server" Width="150px">
                            <asp:ListItem Value="1">可以发货</asp:ListItem>
                            <asp:ListItem Value="0">不能备货</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        是否能确认收货信息:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_CanConfirmReceive" runat="server" Width="150px">
                            <asp:ListItem Value="1">能确认信息</asp:ListItem>
                            <asp:ListItem Value="0">不能确认信息</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td class="style3">
                        是否可以关闭订单:</td>
                    <td class="style4">
                        <asp:DropDownList ID="ddl_CanCloseOrder" runat="server" Width="150px">
                            <asp:ListItem Value="1">可以关闭订单</asp:ListItem>
                            <asp:ListItem Value="0">不能关闭订单</asp:ListItem>
                        </asp:DropDownList>
                    </td>
                </tr>
                <tr>
                    <td align="center" colspan="2">
                        &nbsp;</td>
                </tr>
            </table>
        </asp:WizardStep>
        <asp:WizardStep runat="server" title="2.确认编辑信息">
        </asp:WizardStep>
    </WizardSteps>
</asp:Wizard>


⌨️ 快捷键说明

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