dir_add.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:3k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="dir_add.aspx.cs" Inherits="web_regulation_dir_add" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 asp:TableRowansitional//EN" "http://www.w3.org/asp:TableRow/xhtml1/DTD/xhtml1-asp:TableRowansitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>規章制度管理</title>
  6.     <link href="../../css/style.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body>
  9.     <form id="form1" runat="server">
  10.     <div>
  11.     <center>
  12.         &nbsp;</center>
  13.         <center>
  14.             <asp:Panel ID="PnlDir" runat="server" Style="position: relative">
  15.                 <asp:Label ID="LblDirTitle" runat="server" Font-Bold="true" Font-Size="Medium" Text="添加新目錄"></asp:Label>
  16.                 <input id="ParentId" runat="server" style="position: relative" type="hidden" />
  17.                 <asp:Table runat="server" ID="Tbl">
  18.                     <asp:TableRow>
  19.                         <asp:TableCell BorderWidth="1px">
  20.                             <asp:Label ID="LblLast" runat="server" Text="上一級目錄"></asp:Label>
  21.                         </asp:TableCell>
  22.                         <asp:TableCell BorderWidth="1px" HorizontalAlign="left">
  23.                             <asp:Label ID="LblLastDir" runat="server"></asp:Label>
  24.                         </asp:TableCell>
  25.                     </asp:TableRow>
  26.                     <asp:TableRow>
  27.                         <asp:TableCell BorderWidth="1px" style="width: 120px">
  28.                             <asp:Label ID="LblName" runat="server" Text="名稱"></asp:Label></asp:TableCell>
  29.                         <asp:TableCell BorderWidth="1px" HorizontalAlign="left" style="width: 249px">
  30.                             <asp:TextBox ID="TxtName" runat="server" Width="217px"></asp:TextBox>
  31.                             <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="RequiredFieldValidator" ControlToValidate="TxtName"></asp:RequiredFieldValidator>
  32.                             </asp:TableCell>
  33.                     </asp:TableRow>
  34.                     <asp:TableRow>
  35.                         <asp:TableCell BorderWidth="1px" style="width: 120px">
  36.                             <asp:Label ID="LblDescription" runat="server" Text="描述"></asp:Label></asp:TableCell>
  37.                         <asp:TableCell BorderWidth="1px" HorizontalAlign="left" style="width: 249px">
  38.                             <asp:TextBox ID="TxtDescription" runat="server" TextMode="MultiLine" Width="220px"></asp:TextBox>
  39.                         </asp:TableCell>
  40.                     </asp:TableRow>
  41.                     <asp:TableRow>
  42.                         <asp:TableCell BorderWidth="1px" ColumnSpan="2">
  43.                             <asp:Button ID="BtnOk" runat="server" OnClick="BtnOk_Click" Text="儲存" />
  44.                         </asp:TableCell>
  45.                     </asp:TableRow>
  46.                 </asp:Table>
  47.                 <br />
  48.             </asp:Panel>
  49.             &nbsp;</center>
  50.     </div>
  51.     </form>
  52. </body>
  53. </html>