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 SystemClockExtensions { /// /// 系统时钟控件 /// /// /// /// /// public static MvcHtmlString SystemClock(this HtmlHelper htmlHelper, SystemClockOptions options, System.Collections.Generic.Dictionary htmlAttributes = null) { return MvcHtmlString.Create(Bowin.Web.Controls.Mvc.SystemClock.CreateControl(options,htmlAttributes).Render()); } } }