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

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sender.aspx.cs" Inherits="Sender" %>
  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.      <script language="javascript" type="text/javascript">
  8. function addFile()
  9.         {
  10.             var filebutton = '<br><input type="file" size="50" name="File" class="ButtonCss" />';
  11.             document.getElementById('FileList').insertAdjacentHTML("beforeEnd",filebutton);
  12.         }
  13. </script>
  14.   <script>
  15.   function GetMyValue(contrlname,myvalue)
  16.   {
  17.    if(typeof(myvalue)=="undefined")
  18.    {}
  19.    else
  20.    {
  21.    document.getElementById(contrlname).value=myvalue;
  22.    }
  23.   }
  24.   function clr(contrlname)
  25.   {
  26.    document.getElementById(contrlname).value='';
  27.   }
  28.   </script>
  29. </head>
  30. <body style="margin-left:0;margin-top:0;margin-left:0">
  31.     <form id="form1" runat="server" method="post">
  32.     <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"
  33. cellpadding="2" width="100%" border="1">
  34. <tr>
  35. <td colspan="2"><font class="HeaderText">发送邮件:</font></td>
  36. </tr>
  37. <tr>
  38. <td colspan="2"><hr style="font-size: 1pt;" /></td>
  39. </tr>
  40. <tr style="line-height:2;">
  41. <td style="width:155px" align="right">收件人:</td>
  42. <td><asp:textbox id="To" runat="server" Width="300px" CssClass="InputCss"></asp:textbox>
  43.                 <input type="Button" id="Button1"  Class="ptsbutton" onclick="GetMyValue('To',window.showModalDialog('../SelectForm/SelectUserForm.aspx'))" value="添加"  />
  44.                 <input type="Button"  Class="ptsbutton" value="清空" onclick="clr('To')" />(只能选择一个人)
  45. <asp:RequiredFieldValidator ID="rfN" runat="server" ControlToValidate="To"
  46. CssClass="GbText" Display="Dynamic" ErrorMessage="收件人不能为空!"></asp:RequiredFieldValidator></td>
  47. </tr>
  48. <tr style="line-height:2;">
  49. <td style="width:155px" align="right">主题:</td>
  50. <td><asp:textbox id="Title" runat="server" Width="300px" CssClass="InputCss"></asp:textbox> <asp:textbox id="CC" runat="server" Width="300px" CssClass="InputCss" Visible="False"></asp:textbox></td>
  51. </tr>
  52. <tr style="line-height:2;">
  53. <td style="width:155px" align="right">邮件格式:</td>
  54. <td><input id="HtmlCB" type="checkbox" runat="server" class="GbText" />HTML格式</td>
  55. </tr>
  56. <tr style="line-height:2;">
  57. <td style="width:155px" align="right" valign="top">内容:</td>
  58. <td><asp:textbox id="Body" runat="server" Width="400px" CssClass="InputCss" Height="200px" TextMode="MultiLine"></asp:textbox> </td>
  59. </tr>
  60. <tr style="line-height:2;">
  61. <td style="width:155px" align="right">邮件附件:</td>
  62. <td><input type="button" value="增加附件" class="ButtonCss" onclick="addFile()" />
  63. </td>
  64. </tr>
  65. <tr style="line-height:2;">
  66. <td style="width:155px" align="right"></td>
  67. <td><p id="FileList"><input type="file" runat="server" size="50" name="File" class="ButtonCss" /></p></td>
  68. </tr>
  69. <tr style="line-height:2;">
  70. <td style="width:155px" align="right"></td>
  71. <td align="left"><font face="宋体"></font><asp:Button ID="SenderBtn" 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>
  72. </tr>
  73. <tr>
  74. <td style="width: 155px"></td>
  75. </tr>
  76.     </table>
  77.     </form>  
  78. </body>
  79. </html>