繁体   English   中英

如何使用AjaxToolKit确认按钮扩展器?

[英]How to use AjaxToolKit Confirm Button Extender?

在基于ASP.NET Web的应用程序中,我有一个普通的ASP.NET按钮,其背后有一种用于发送电子邮件的方法,如下所示:

ASP.NET代码:

<asp:Button ID="btnSendReminders" runat="server" Text="Send Reminders" OnClick="btnSendReminders_Click"  />

代码隐藏:

protected void btnSendReminders_Click(object sender, EventArgs e)
        {
            SendEmailTOAllUser();
        }


        protected void SendEmail(string toAddresses, string fromAddress, string MailSubject, string MessageBody, bool isBodyHtml)
        {
            SmtpClient sc = new SmtpClient("Mail Server");
            try
            {
                MailMessage msg = new MailMessage();
                msg.From = new MailAddress("pssp@aramco.com", "PMOD Safety Services Portal (PSSP)");

                // In case the mail system doesn't like no to recipients. This could be removed
                //msg.To.Add("psTeesstp@DomainServer.com");

                msg.Bcc.Add(toAddresses);
                msg.Subject = MailSubject;
                msg.Body = MessageBody;
                msg.IsBodyHtml = isBodyHtml;
                sc.Send(msg);
            }
            catch (Exception ex)
            {
                throw ex;
            }

        }

        protected void SendEmailTOAllUser()
        {
            string connString = "Data Source=localhost\\sqlexpress;Initial Catalog=psspForTest;Integrated Security=True";

            using (SqlConnection conn = new SqlConnection(connString))
            {
                var sbEmailAddresses = new System.Text.StringBuilder(2000);
                string quizid = "";

                // Open DB connection.
                conn.Open();

                string cmdText = "SELECT MAX (QuizID) As mQuizID FROM dbo.QUIZ WHERE IsSent <> 0";
                using (SqlCommand cmd = new SqlCommand(cmdText, conn))
                {
                    SqlDataReader reader = cmd.ExecuteReader();
                    if (reader != null)
                    {
                        while (reader.Read())
                        {
                            // There is only 1 column, so just retrieve it using the ordinal position
                            quizid = reader["mQuizID"].ToString();

                        }
                    }
                    reader.Close();
                }

                string cmdText2 = @"SELECT e.Username, d.DivisionShortcut
                                FROM
                                  employee e
                                  join Divisions d on (e.DivisionCode = d.SapCode)
                                  left join 
                                    (select A.QuizID, a.Username 
                                     from UserQuiz a join 
                                     (select max(QuizID) QuizID from dbo.Quiz where IsSent=1) b
                                     on a.QuizId = b.QuizID
                                     ) c
                                   on e.Username = c.Username
                                 WHERE c.QuizID is null
                                 Order By d.DivisionShortcut";
                using (SqlCommand cmd = new SqlCommand(cmdText2, conn))
                {
                    SqlDataReader reader = cmd.ExecuteReader();
                    if (reader != null)
                    {
                        while (reader.Read())
                        {
                            var sName = reader.GetString(0);
                            if (!string.IsNullOrEmpty(sName))
                            {
                                if (sbEmailAddresses.Length != 0)
                                {
                                    sbEmailAddresses.Append(",");
                                }
                                // Just use the ordinal position for the user name since there is only 1 column
                                sbEmailAddresses.Append(sName).Append("@DomainServer.com");
                            }
                        }
                    }
                    reader.Close();


                    // Add the parameter to the command
                    var oParameter = cmd.Parameters.Add("@QuizID", SqlDbType.Int);


                    var sEMailAddresses = sbEmailAddresses.ToString();
                    string link = "<a href='http://StartQuiz.aspx?testid=" + quizid + "'> Click here to participate </a>";
                    string body = @"<font color='red' size='18pt'><b> ***REMINDER*** </b></font> <br /><br /> 
                                Good day, <br /><br />
                                <b>This is just a gentle reminder asking you to participate in the last new short safety quiz </b>"
                                    + link +
                                    @"<br /><br />
                                Also, give yourself a chance to gain more safety culture by reading the PMOD Newsletter.
                                <br /><br /><br />
                                PLEASE <span class='highlight'>IGNORE</span> THIS MESSAGE IF YOU HAVE ALREADY PARTICIPATED IN THIS QUIZ.
                                <br /> <br /><br /> <br />
                                This email was generated using the <a href='http://pmv/pssp/Default.aspx'>Safety Portal (PSSP) </a>. 
                                Please do not reply to this email.";

                    int sendCount = 0;
                    List<string> addressList = new List<string>(sEMailAddresses.Split(','));
                    StringBuilder addressesToSend = new StringBuilder();

                    for (int userIndex = 0; userIndex < addressList.Count; userIndex++)
                    {
                        sendCount++;
                        if (addressesToSend.Length > 0)
                            addressesToSend.Append(",");

                        addressesToSend.Append(addressList[userIndex]);
                        if (sendCount == 10 || userIndex == addressList.Count - 1)
                        {
                            SendEmail(addressesToSend.ToString(), "", "REMINDER: Notification of New Weekly Safety Quiz", body, true);
                            addressesToSend.Clear();
                            sendCount = 0;
                        }
                    }


                    // Update the parameter for the current quiz
                    oParameter.Value = quizid;
                    // And execute the command
                    cmd.ExecuteNonQuery();

                }
                conn.Close();
            }
        }

现在,我不想使用<asp:Button> ,而是要使用:

 <ajaxToolkit:ConfirmButtonExtender ID="btnSendReminders" runat="server" TargetControlID="btnSendReminders"
                                                ConfirmText="Are you sure you want to click this?"
                                                OnClientCancel="CancelClick" />

具有ConfirmMessage。 但我不知道为什么会出现以下错误:**

扩展程序控件“ btnSendReminders”不能扩展“ btnSendReminders”。 类型为“ AjaxControlToolkit.ConfirmButtonExtender”的扩展程序控件不能扩展类型为“ AjaxControlToolkit.ConfirmButtonExtender”的控件。

而且我不知道为什么。 那么如何代替<asp:button>使用它呢?

更新:

我只是想出了如何使用它。 我应该使用它如下:

<asp:Button ID="btnSendReminders" runat="server" Text="Send Reminders" OnClick="btnSendReminders_Click"  />
            <ajaxToolkit:ConfirmButtonExtender ID="ConfirmButtonExtender1" runat="server" TargetControlID="btnSendReminders"
                                                ConfirmText="Are you sure you want to send reminders to these employees?"
                                                OnClientCancel="CancelClick">
                                                </ajaxToolkit:ConfirmButtonExtender>

但是现在的问题是出现确认消息时,单击“取消”按钮,仍然会刷新页面并发送提醒。 单击“取消”按钮时如何防止这种情况?

您可以使用客户端返回确认执行相同的操作

<asp:Button ID="btnSendReminders" OnClientClick="javascript:return confirm('Are you sure you want to proceed?')" runat="server" Text="Send Reminders" OnClick="btnSendReminders_Click"  />

使用以下代码确认按钮ajax扩展器来获取确认框:

  <asp:Button ID="btnSendReminders" runat="server" Text="Send Reminders" OnClick="btnSendReminders_Click"  />
<ajaxToolkit:ConfirmButtonExtender ID="cbe" runat="server"
   TargetControlID="btnSendReminders"
    ConfirmText="Are you sure you want to Send Reminders?"
    />

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM