Simplify.Web.MessageBox
June 26, 2026 ยท View on GitHub
Simplify.Web.MessageBox is a package which provides non-interactive server side message box for Simplify.Web web-framework.
Quick Start
Setup message box templates
There are different template file for different message box statuses. Inline templates intended to use as API responses but stylized with HTML.

Displaying message box
Default message box which will be added to 'MainContent' variable
public class MyController : Controller2
{
public ControllerResponse Invoke() =>
new MessageBox("your string");
}
Inline message box
Framework execution will be stopped, message box will be returned to client without rest of the website content
public class MyController : Controller2
{
public ControllerResponse Invoke() =>
new MessageBoxInline("your string");
}