sys_permission.aspx

来自「一款很好的可以实现多选的dropdownlist。我在很多地方用到」· ASPX 代码 · 共 92 行

ASPX
92
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sys_Permission.aspx.cs" Inherits="SysManage_Sys_Permission" %>
<%@ Register TagPrefix="hw" Namespace="UNLV.IAP.WebControls" Assembly="DropDownCheckList" %>
<!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>
    <link rel="stylesheet" href="SysManage.CSS" type="text/css" />
</head>
<body bgcolor="#f3f3f3">
    <form id="form1" runat="server">
        <div>
            <table align="center" cellpadding="0" cellspacing="0" width="80%" border="0">
                <tr align="center">
                    <td>
                        &nbsp;<asp:Label ID="ViewValue" runat=server></asp:Label>
                    </td>
                </tr>
                <tr>
                    <td>
                        <table align="center" cellpadding="0" cellspacing="0" width="100%" id="table1" runat="server">
                            <tr align="center">
                                <td>
                                    <input type="radio" id="radio1" name="radio1" runat="server" value="1" checked />查看
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    <input type="radio" id="radio2" name="radio1" runat="server" value="2" />查询
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    <input type="radio" id="radio3" name="radio1" runat="server" value="3" />添加
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    <input type="radio" id="radio4" name="radio1" runat="server" value="4" />修改
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    <input type="radio" id="radio5" name="radio1" runat="server" value="5" />删除
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    &nbsp;
                                </td>
                            </tr>
                        </table>
                        <table align=center cellpadding=0 cellspacing=0 width=100% id="table2" runat=server visible=false>
                            <tr align="center">
                                <td>
                                    &nbsp;
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    &nbsp;
                                </td>
                            </tr>
                             <tr>
                                 <td>
                                      <hw:DropDownCheckList id="DropDownCheckList1" runat="server" DataTextField="Name" RepeatColumns=2   DisplayTextWidth=300 DataValueField="ID" DropImageSrc="../Images/expand.gif" TextWhenNoneChecked="--请选择工程综合管理授权操作--" DisplayTextList=Labels  ClientCodeLocation="../JS/DropDownCheckList.js"></hw:DropDownCheckList>
                                 </td>
                             </tr>
                             <tr align="center">
                                <td>
                                    &nbsp;
                                </td>
                            </tr>
                            <tr align="center">
                                <td>
                                    &nbsp;
                                </td>
                            </tr>
                        </table>
                    </td>
                </tr>
                <tr align="center">
                    <td>
                        <input id="submit" name="submit" runat="server" size="100" value="授 权" type="submit"
                            onserverclick="submit_ServerClick" />
                    </td>
                </tr>
            </table>
        </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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