You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://libraries.io/nuget/Simplify.Web.MessageBox)
`Simplify.Web.MessageBox` is a package which provides non-interactive server side message box for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework.
@@ -24,12 +24,10 @@ Inline templates intended to use as API responses but stylized with HTML.
24
24
#### Default message box which will be added to 'MainContent' variable
25
25
26
26
```csharp
27
-
publicclassMyController : Controller
27
+
publicclassMyController : Controller2
28
28
{
29
-
publicoverrideControllerResponseInvoke()
30
-
{
31
-
returnnewMessageBox("your string");
32
-
}
29
+
publicControllerResponseInvoke() =>
30
+
newMessageBox("your string");
33
31
}
34
32
```
35
33
@@ -38,11 +36,9 @@ public class MyController : Controller
38
36
Framework execution will be stopped, message box will be returned to client without rest of the website content
0 commit comments