0

updatepanelform (表示)、updatepanelthanks (非表示) の 2 つの更新パネルを含むページがあります。このメソッドを使用して、asp ページのボタンのクリック イベントでメールを送信しました。

protected void BtnRfqClick(object sender, EventArgs e)
{
    // Gmail Address from where you send the mail
    var fromAddress = TbEmailRfq.Text.ToString();
    // any address where the email will be sending
    var toAddress = "user@gmail.com";
    //Password of your gmail address
    var name = TbNameRfq.Text.ToString();
    const string fromPassword = "password";
    // Passing the values and make a email formate to display
    string subject = "Welcome To world";
    string body = "Name :" + TbNameRfq.Text.ToString() + Environment.NewLine +
                  "Email Id :" + TbEmailRfq.Text.ToString()
        + Environment.NewLine + TaComment.InnerText.ToString();
    // smtp settings
    var smtp = new System.Net.Mail.SmtpClient();
    {
        smtp.Host = "smtp.gmail.com";
        smtp.Port = 587;
        smtp.EnableSsl = true;
        smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
        smtp.Credentials = new NetworkCredential("user email", "password");
        smtp.Timeout = 20000;
    }
    // Passing values to smtp object
    smtp.Send(fromAddress, toAddress, subject, body);
}

すべて正常に動作していますが、updatepanelform の可視性を非表示に設定できず、updatepanelthanks が電子メールを正常に送信した後に可視に設定できません。

4

1 に答える 1

0

メール送信後、以下を配置してください。

updatepanelform.Visible = false;
updatepanelthanks.Visible = true;
于 2013-04-16T12:49:12.337 に答える