⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sendmail.aspx

📁 收发邮件功能
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SendMail.aspx.cs" Inherits="SendMail" %>


<%@ Register src="left.ascx" tagname="left" tagprefix="uc1" %>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>邮件收发系统-通讯录</title>
    <style type="text/css">
        .style1
        {
            font-size: large;
            font-weight: bold;
        }
    </style>
</head>
<body style="margin-left:0px; margin-top:0px; font-family:宋体; font-size:12px">
    <form id="form1" runat="server">
    <div style="text-align:center">
    <table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
        <tr>
        <td style="background-color: #66CCFF; height:50px; font-size:30pt; font-family: 华文彩云; font-weight: bold; color:White;">邮件收发系统
        </td>
        </tr>
            <tr>
                <td style="height: 92px" valign="top">
                    <table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
                        <tr>
                            <td style="height: 500px; width:15%; background-color: #66CCFF; border-right:1px #c1c1c1 solid;" valign="top">
                                <uc1:left ID="left1" runat="server" />
                            </td>
                            <td style="height: 500px; width:85%" valign="top">
                                <br />
                            <br />
                                <table border="0" cellpadding="0" cellspacing="0" style="border-right: gray 1px solid;
                                    border-top: gray 1px solid; border-left: gray 1px solid; width: 600px; border-bottom: gray 1px solid">
                                    <tr>
                                        <td align="center" style="font-size: small; width: 599px; color: white; background-color:#66CCFF;
                                            font-family: 宋体; height: 18px">
                                            <span class="style1">发送电子邮件</span>&nbsp;</td>
                                    </tr>
                                    <tr>
                                        <td style="width: 599px; height: 19px" valign="middle">
                                            <table border="0">
                                                <tr>
                                                    <td align="right" style="width: 101px; height: 26px">
                                                        发件人地址:</td>
                                                    <td align="left" style="width: 371px; height: 26px">
                                                        <asp:TextBox ID="FromMail" runat="server" Columns="30"></asp:TextBox></td>
                                                </tr>
                                                <tr>
                                                    <td align="right" style="width: 101px; height: 26px">
                                                        收件人地址:
                                                    </td>
                                                    <td align="left" style="width: 371px; height: 26px">
                                                        <asp:TextBox ID="ToEmail" runat="server" Columns="30"></asp:TextBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td align="right" style="width: 101px; height: 26px">
                                                        添加附件:</td>
                                                    <td align="left" style="width: 371px; height: 26px">
                                                        <asp:FileUpload ID="AttachmentFile" runat="server" />
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td align="right" style="width: 101px">
                                                        主题:
                                                    </td>
                                                    <td align="left" style="width: 371px">
                                                        <asp:TextBox ID="Subject" runat="server" Columns="30">
                                                       </asp:TextBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td colspan="2">
                                                        <asp:TextBox ID="Body" runat="server" Columns="55" Rows="10" TextMode="MultiLine">
                                                        </asp:TextBox>
                                                    </td>
                                                </tr>
                                                <tr>
                                                    <td align="center" colspan="2">
                                                        <asp:Button ID="SendEmail" runat="server" OnClick="SendEmail_Click" Text="发送电子邮件" />
                                                        <asp:Button ID="preSend" runat="server" Text="存为草稿" OnClick="preSend_Click" /></td>
                                                </tr>
                                                <tr>
                                                    <td align="center" colspan="2">
                                                        <asp:Label ID="message" runat="server" Visible="false"></asp:Label>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                    </table>
                </td>
            </tr>
            <tr>
                <td style="height: 12px; background-color: #66CCFF; font-family: 华文新魏; font-weight: bold; color:White; font-size:14pt">
                  06级软件(2)班-邓文姬</td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -