1

私はaspxフォームを持っていて、たくさんのテキストボックス、ドローダウンリスト、チェックボックスがあります。この入力コントロールに必要なデータが入力されたら、この情報を電子メールで送信します。申請者の名前を含むテキストボックス、職業などを一覧表示するドロップダウンリストがあるとします。だから私はメールに同じ情報を含めたいと思います

 Name:Anthony Brian 
 Occupation: Surgeon
 ......

どうすればいいですか?

編集:誰かが興味を持っている場合のaspxは次のとおりです:

 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="WriteMail.aspx.cs"     
 Inherits="WriteMail" %>

 <!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">
    .style2
    {
        width: 203px;
    }
    .style3
    {
        width: 226px;
    }
    .style4
    {
    }
    .style6
    {
        width: 198px;
    }
    .style7
    {
        width: 204px;
    }
    </style>
    </head>
    <body>
   <form id="form1" runat="server">
   <div align="center" style="font-weight: bold; font-family: tahoma; font-size: 12px;
    margin-bottom: 10px;">
    Hörmətli istifadəçi!</div>
   <div align="center" style="font-family: tahoma; font-size: 12px;margin-bottom:   
   30px;">
    <span class="style2"><span class="style10">Azərbaycan Respublikası Dövlət Sosial  
   Müdafiə
        Fonduna məktub göndərmək ücün aşağıdakı formanı doldurun.(* - vacib sahələr)  
   </span></span></div>
  <div id="main">
    <table>
        <tr>
            <td class="style6">
                &nbsp;Adınız* :</td>
            <td class="style7">
                Soyadınız* :</td>
            <td class="style3">
                &nbsp;Atanızın adı*</td>
        </tr>

        <tr>
            <td class="style6">
                <asp:TextBox ID="TextBox2" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style7">
              &nbsp;<asp:TextBox ID="TextBox3" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style3">
                &nbsp;<asp:TextBox ID="TextBox4" runat="server" Width="182px"></asp:TextBox>
            </td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;</td>
            <td class="style7">
                &nbsp;</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;Ölkə*:&nbsp;</td>
            <td class="style7">
              &nbsp;Şəhər*:&nbsp;</td>
            <td class="style3">
                &nbsp;&nbsp; &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                <asp:TextBox ID="TextBox5" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style7">
                <asp:TextBox ID="TextBox6" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;</td>
            <td class="style7">
                &nbsp;</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;Ünvan*:</td>
            <td class="style7">
                &nbsp;</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style4" colspan="3">
                <asp:TextBox ID="TextBox7" runat="server" Width="602px"></asp:TextBox>
            </td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;</td>
            <td class="style7">
                &nbsp;</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                Telefon kodu və nömrəsi*:</td>
            <td class="style7">
                Email*:</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                <asp:TextBox ID="TextBox8" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style7">
                <asp:TextBox ID="TextBox9" runat="server" Width="182px"></asp:TextBox>
            </td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                &nbsp;</td>
            <td class="style7">
                &nbsp;</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                Yaşınız*:</td>
            <td class="style7">
                Cinsiniz*:</td>
            <td class="style3">
                &nbsp;</td>
        </tr>

        <tr>
            <td class="style6">
                <asp:TextBox ID="TextBox10" runat="server" Width="66px"></asp:TextBox>
            </td>
            <td class="style7">
                <asp:CheckBoxList ID="CheckBoxList1" runat="server" 
                    RepeatDirection="Horizontal">
                    <asp:ListItem Value="1">Kişi</asp:ListItem>
                    <asp:ListItem Value="2">Qadın</asp:ListItem>
                </asp:CheckBoxList>
            </td>
            <td class="style3">
                &nbsp;</td>
        </tr>

    </table>
</div>
</form>

4

2 に答える 2

2

コードビハインドファイルからメールを送信するためのac#スニペットは次のとおりです。

        public bool SendEmail(string to、string subject、string body){

            //Web.configからSMTPサーバーのホスト名を取得します
            文字列ホスト名=ConfigurationManager.AppSettings["SMTP"];
            //例:追加
            //Web.configのセクションへ
            string user = ConfigurationManager.AppSettings ["SMTP_user"];
            string pwd = ConfigurationManager.AppSettings ["SMTP_pwd"];

            MailMessage mail = new MailMessage();
            mail.From = new MailAddress( "your@email.com"、 "Name");
            mail.To.Add(to);
            mail.Subject=件名;
            mail.Body = body;
            mail.IsBodyHtml = false;
            SmtpClient client = new SmtpClient(hostname);
            client.Credentials = new System.Net.NetworkCredential(user、pwd);
            試す {
                client.Send(mail);
                trueを返します。
            } catch(例外){
                falseを返します。
            }

        }

それで頑張ってください;)

于 2012-04-26T07:15:24.130 に答える
1

以下のコードを使用して、aspx ページから詳細を取得し、メール本文として送信できます。

public string GetHtmlBody()
{
    String strHTMLBody = String.Empty;


    if (TextBox2.Text.ToString().Trim() != "")
    {
        strHTMLBody = strHTMLBody + "Name : " + TextBox2.Text.ToString().Trim() + "<br/>"; 
    }
    if (TextBox3.Text.ToString().Trim() != "")
    {
        strHTMLBody = strHTMLBody + "Surname : " + TextBox3.Text.ToString().Trim() + "<br/>";
    }
    if (TextBox2.Text.ToString().Trim() != "")
    {
        strHTMLBody = strHTMLBody + "Occupation : " + TextBox4.Text.ToString().Trim();
    }

    // like wise you can get other details in same way in string variable.

    return strHTMLBody;

}
public bool SendEmail(string to, string subject)
{

    // get the hostname of the SMTP server from Web.config
    string hostname = ConfigurationManager.AppSettings["SMTP"];
    // Example: add 
    //          to the  section of Web.config
    string user = ConfigurationManager.AppSettings["SMTP_user"];
    string pwd = ConfigurationManager.AppSettings["SMTP_pwd"];

    MailMessage mail = new MailMessage();
    mail.From = new MailAddress("your@email.com", "Name");
    mail.To.Add(to);
    mail.Subject = subject;
    mail.Body = GetHtmlBody();
    mail.IsBodyHtml = true ;
    SmtpClient client = new SmtpClient(hostname);
    client.Credentials = new System.Net.NetworkCredential(user, pwd);
    try
    {
        client.Send(mail);
        return true;
    }
    catch (Exception)
    {
        return false;
    }

}

これがお役に立てば幸いです...幸せなコーディング....

于 2012-04-26T08:49:57.690 に答える