BootstrapComponents.Components.Buttons.ButtonExtensions.Submit C# (CSharp) Method

Submit() public static method

public static Submit ( this html, string text = "Submit", ButtonSettings buttonSettings = null ) : Button
html this
text string
buttonSettings ButtonSettings
return Button
        public static Button Submit(this HtmlHelper html, string text = "Submit", ButtonSettings buttonSettings = null)
        {
            return new Button(text, buttonSettings, new{type="Submit"});
        }