I would like to find a good-looking implementation of C# / ASP.NET message/simple dialog box.
It should:
- be generated when I call something like showDialogBox() in my code, whenever I need to show it (simple C# interface)
- be modal.
- be visually appealing and customisable, including its size and position.
- be able to display at least OK button and a text field that can show HTML text.
I am interested in reasonably priced or free solutions.
In short, please share links to C# ASP.NET DialogBox solutions you like!
You can use the
AJAX Control Toolkitand style it yourself (The example is not visually appealing IMO):http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/ModalPopup/ModalPopup.aspx
jQuery also has it’s
Dialogwhich can be skinned via theTheme Rollerhttp://jqueryui.com/demos/dialog/
Both of them examples are free (You should not be paying for a fancy modal dialog), you could also create your own by using a
<div>tag which holds your content and javascript to hide/show the tag.