12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc.Html;
- using Bowin.Web.Controls.Mvc;
- namespace System.Web.Mvc
- {
- public static class ButtonExtensions
- {
- public static MvcHtmlString Button(this HtmlHelper htmlHelper,
- ButtonOptions buttonOptions,
- System.Collections.Generic.IDictionary<string, string> htmlAttributes = null)
- {
- return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.Button.CreateControl(buttonOptions,htmlAttributes).Render() );
- }
- }
- }
|