Click here to Skip to main content
15,888,401 members
Articles / Web Development / ASP.NET

JQuery Confirm Box

Rate me:
Please Sign up or sign in to vote.
4.00/5 (3 votes)
15 Jul 2012CPOL 48K   3   1
JQuery Confirm Box is very simple, and it can be easily customized

JQuery Confirm Box is very simple, and it can be easily customized. We can give manual values for button captions.

The custom box seems like the picture on the attachment.

Image 1

The html page is below:

HTML
<%@ Page Language="C#" AutoEventWireup"true" 
CodeBehind="JqueryConfirm.aspx.cs"
    Inherits="SetCultureSample.JqueryConfirm.JqueryConfirm" %>
<!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> 
    <link href="../Styles/jquery.confirm.css" 
    rel="stylesheet" type="text/css" />
    <script src="../Scripts/jquery-1.4.1.min.js" 
    type="text/javascript"></script>
    <script src="../Scripts/jquery.confirm.js" 
    type="text/javascript"></script>
    <script type="text/javascript">
     
            function ShowConfirm(Title, Message, OkBtnCaption, CancelBtnCaption, ButtonID) {
                var elem = $(this).closest('.item');               
             
                $.confirm({
                    'title': Title,
                    'message': Message,
                    'buttons': {
                        OkBtnCaption: {
                            'class': 'blue',
                            'action': function () { $('#' + ButtonID).click(); },
                            'id': 'okBtn'
                        },
                        CancelBtnCaption: {
                            'class': 'gray',
                            'action': function () { },
                            'id': 'cancelBtn'
                        }
                   }
                });
                return false;
            }   
      </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" 
        Text="Button" OnClick="Button1_Click" />
    </div>
    
    </form>
</body>
</html>

Here, we are passing parameters to this method, and ShowConfirm method appends the values to the confirm box.

HTML
<link href="../Styles/jquery.confirm.css"
rel="stylesheet" type="text/css" />
  <script src="../Scripts/jquery.confirm.js"
  type="text/javascript"></script>

Here, you need to use a stylesheet jquery.confirm.css and a jquery file jquery.confirm.js.

The code behind is:

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace SetCultureSample.JqueryConfirm
{
    public partial class JqueryConfirm : System.Web.UI.Page
    {
        /// <summary>
        /// Gets or sets the title for.
        /// </summary>
        /// <value>The title for.</value>
        public string TitleFor
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the message.
        /// </summary>
        /// <value>The message.</value>
        public string Message
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the ok button.
        /// </summary>
        /// <value>The ok button.</value>
        public string OkButton
        {
            get;
            set;
        }
        /// <summary>
        /// Gets or sets the cancel button.
        /// </summary>
        /// <value>The cancel button.</value>
        public string CancelButton
        {
            get;
            set;
        }
        /// <summary>
        /// Handles the Load event of the Page control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> 
        /// instance containing the event data.</param>
        protected void Page_Load(object sender, EventArgs e)
        {
            TitleFor = "Please Confirm";
            Message = "Do you agree ?";
            OkButton = "bonjour/ok";
            CancelButton = "Bon/Cancel";          
            Button1.Attributes.Add("onclick", "javascript:return ShowConfirm
            ('" + TitleFor + "','" + Message + 
            "','" + OkButton + "','" + CancelButton + "','" + 
            this.Button1.ClientID + "');");
        }
        /// <summary>
        /// Handles the Click event of the Button1 control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> 
        /// instance containing the event data.
        /// </param>
        protected void Button1_Click(object sender, EventArgs e)
        {
                     
        }
    }
}

Watch my blog at http://onlinedotnettutorials.blogspot.in/.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I am a software developer with a passion to develop innovative ideas.

Comments and Discussions

 
QuestionJquery confirmation box Pin
Member 80593932-Apr-13 19:55
Member 80593932-Apr-13 19:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.