NewFolder.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="NewFolder.aspx.cs" Inherits="NewFolder" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>第11章:网络邮件管理系统===新建文件夹</title>
  6.     <link rel="Stylesheet" href="ASPNET2.0BaseCss.css" type="text/css" />
  7. </head>
  8. <body style="margin-left:0;margin-top:0;margin-left:0">
  9.     <form id="form1" runat="server">
  10.     <table class="GbText" style="BORDER-COLLAPSE: collapse; border-right: #ccccff thin solid; border-top: #ccccff thin solid; border-left: #ccccff thin solid; border-bottom: #ccccff thin solid;" borderColor="#93bee2" cellspacing="0"
  11. cellpadding="2" width="100%" border="1">
  12. <tr>
  13. <td colspan="2"><font class="HeaderText">新建文件夹</font></td>
  14. </tr>
  15. <tr>
  16. <td colspan="2"><hr style="font-size: 1pt;" /></td>
  17. </tr>
  18. <tr style="line-height:2;">
  19. <td style="width:150" align="right">名称:</td>
  20. <td><asp:textbox id="Name" runat="server" Width="300px" CssClass="InputCss"></asp:textbox>
  21. <asp:RequiredFieldValidator ID="rfN" runat="server" ControlToValidate="Name"
  22. CssClass="GbText" Display="Dynamic" ErrorMessage="名称不能为空!"></asp:RequiredFieldValidator></td>
  23. </tr>
  24. <tr style="line-height:2;">
  25. <td style="width:150" align="right"></TD>
  26. <TD align="left"><font face="宋体">&nbsp;</font></td>
  27. </tr>
  28. <tr style="line-height:2;">
  29. <td style="width:150" width="150" align="right"></TD>
  30. <TD align="left"><font face="宋体">&nbsp;</font><asp:Button ID="NewBtn" runat="server" Text="确定" Width="100px" CssClass="ButtonCss" OnClick="NewBtn_Click" /><font face="宋体">&nbsp;</font><asp:Button ID="ReturnBtn" runat="server" Text="返回" Width="100px" CssClass="ButtonCss" OnClick="ReturnBtn_Click" CausesValidation="False" /></td>
  31. </tr>
  32. <tr>
  33. <td></td>
  34. </tr>
  35.     </table>
  36.     </form>
  37. </body>
  38. </html>