dir_add.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:3k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="dir_add.aspx.cs" Inherits="web_regulation_dir_add" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 asp:TableRowansitional//EN" "http://www.w3.org/asp:TableRow/xhtml1/DTD/xhtml1-asp:TableRowansitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>規章制度管理</title>
- <link href="../../css/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <center>
- </center>
- <center>
- <asp:Panel ID="PnlDir" runat="server" Style="position: relative">
- <asp:Label ID="LblDirTitle" runat="server" Font-Bold="true" Font-Size="Medium" Text="添加新目錄"></asp:Label>
- <input id="ParentId" runat="server" style="position: relative" type="hidden" />
- <asp:Table runat="server" ID="Tbl">
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">
- <asp:Label ID="LblLast" runat="server" Text="上一級目錄"></asp:Label>
- </asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="left">
- <asp:Label ID="LblLastDir" runat="server"></asp:Label>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px" style="width: 120px">
- <asp:Label ID="LblName" runat="server" Text="名稱"></asp:Label></asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="left" style="width: 249px">
- <asp:TextBox ID="TxtName" runat="server" Width="217px"></asp:TextBox>
- <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="RequiredFieldValidator" ControlToValidate="TxtName"></asp:RequiredFieldValidator>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px" style="width: 120px">
- <asp:Label ID="LblDescription" runat="server" Text="描述"></asp:Label></asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="left" style="width: 249px">
- <asp:TextBox ID="TxtDescription" runat="server" TextMode="MultiLine" Width="220px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px" ColumnSpan="2">
- <asp:Button ID="BtnOk" runat="server" OnClick="BtnOk_Click" Text="儲存" />
- </asp:TableCell>
- </asp:TableRow>
- </asp:Table>
- <br />
- </asp:Panel>
- </center>
- </div>
- </form>
- </body>
- </html>