Click here to Skip to main content
15,883,883 members
Articles / Programming Languages / Javascript

JQuery Message Box Plugin

Rate me:
Please Sign up or sign in to vote.
4.00/5 (21 votes)
6 Oct 2011CPOL2 min read 123.6K   4.9K   49  
Shows a simple implementation of JQuery UI based Message Box Dialog and Confirm Dialog
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace ConfirmDemo
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            LinkButton1.CssClass = "confirmLink";
        }

        protected void LinkButton1_Click(object sender, EventArgs e)
        {
            Label1.Text = "User Clicked OK";
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Binary Quest
Australia Australia
Sazzad is working as a developer since 2001 in the Realestate Market in Melbourne. Likes to work in C# and .Net platform. Started an ISV Business in 2008 called Binary Quest.

Follow me on Linked In

Comments and Discussions