📄 module_add.aspx
字号:
<%@ Page Language="C#" MasterPageFile="~/Admin/MasterPage2.master" AutoEventWireup="true" CodeFile="module_add.aspx.cs" Inherits="Admin_System_module_add" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div style="width: 422px; height: 279px">
<asp:Label ID="Label1" runat="server" Text="第一级模块:"></asp:Label>
<asp:DropDownList ID="ddlParentModule" runat="server" DataSourceID="ObjectDataSource1" DataTextField="ModuleName" DataValueField="ModuleID" OnDataBound="ddlParentModule_DataBound">
</asp:DropDownList>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" TypeName="Sovo.OA.BLL.ModuleBLL" OldValuesParameterFormatString="original_{0}" SelectMethod="getFristModules"></asp:ObjectDataSource>
<table>
<tr>
<td style="width: 100px">
模块名称</td>
<td style="width: 100px">
<asp:TextBox ID="txtModuleName" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 100px">
描述</td>
<td style="width: 100px">
<asp:TextBox ID="txtModuleDescription" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 100px">
链接地址</td>
<td style="width: 100px">
<asp:TextBox ID="txtLink" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<asp:Button ID="Button1" runat="server" Text="添加" OnClick="Button1_Click" /></td>
</tr>
</table>
<asp:Label ID="Label2" runat="server" Height="29px" Text="链接书写示例:Admin/System/role_list.aspx"
Width="240px"></asp:Label><br />
<asp:Label ID="lblMsg" runat="server" Text="Label" Width="242px"></asp:Label>
<asp:GridView ID="GridView1" runat="server" DataKeyNames="ModuleID" OnRowCommand="GridView1_RowCommand" AutoGenerateColumns="False" Width="80%">
<Columns>
<asp:BoundField DataField="ModuleID" HeaderText="ModuleID" />
<asp:BoundField DataField="ModuleName" HeaderText="ModuleName" />
<asp:BoundField DataField="ParentID" HeaderText="ParentID" />
<asp:BoundField DataField="Link" HeaderText="Link" />
<asp:ButtonField CommandName="deleteModule" Text="删除">
<ItemStyle Width="40px" />
</asp:ButtonField>
</Columns>
</asp:GridView>
</div>
</asp:Content>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -