AlertBox
Displays an alert box that can contain an icon and text that inform and instruct the user. Alert boxes are not modal and can disappear automatically.
The Wisej.NET AlertBox cannot be instantiated directly. Display messages by calling the static AlertBox.Show method, which accepts parameters for title, message, and icon configuration.
Features
Styles
The AlertBox supports several alert styles:
None: No icon displayedError: Red X or exclamation point indicating an errorStop: Stop sign iconHand: Raised hand iconQuestion: Question mark in circleWarning: Exclamation point in triangleInformation: Letter i in circle

HTML Content
Enable HTML content in messages by setting the allowHtml parameter to true:
AlertBox.Show(@"<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>", allowHtml: true);
Advanced
JavaScript Widget
Item
Description
Last updated
Was this helpful?

