UPDATE: This control is now available from my CodePlex project @ http://www.codeplex.com/AspNetAjaxControls.
In this article I set out to breathe new life into the types of alerts, dialogs and prompts that are available to ASP.NET developers. In ASP.NET web development we are typically limited to what the browser can support. I am sure that most of us are very familiar with the JavaScript alert() and confirm() dialogs. They are limited, not customizable, and do not support any rich HTML content.
The AJAX Control Toolkit introduced a few extender controls such as the “ModalDialog” Extender and the “ConfirmButton” extender. These solved a few of our common issues, but they were still leaving me wanting for more. I’ve taken what I’ve learned from using the above techniques and encapsulated them into one very extensible and easy to use prompt control for ASP.NET AJAX.
More...