SixBit.Web.CsJs.CsJsViewContext.Alert C# (CSharp) Method

Alert() public method

public Alert ( string text ) : void
text string
return void
        public void Alert(string text)
        {
            JsFunc("alert", text);
        }

Usage Example

Example #1
0
 public override void Render(CsJsViewContext csjs)
 {
     csjs.Alert("Hello from csjs!");
 }