using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.Mvc; using Bowin.Web.Controls.Mvc; namespace System.Web.Mvc { public static class ToolbarExtensions { public static MvcHtmlString Toolbar(this HtmlHelper htmlHelper, ToolbarOptions toolbarOptions, System.Collections.Generic.IDictionary htmlAttributes = null) { return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.Toolbar.CreateControl(toolbarOptions, htmlAttributes).Render()); } } }