Carrotware.Web.UI.Controls.BasicControlUtils.InsertjQueryUI C# (CSharp) Метод

InsertjQueryUI() публичный статический Метод

public static InsertjQueryUI ( Page thePage ) : void
thePage System.Web.UI.Page
Результат void
        public static void InsertjQueryUI(Page thePage)
        {
            jqueryui jq = FindjQueryUI(thePage);

            if (jq == null) {
                jq = new jqueryui();

                thePage.Header.Controls.AddAt(1, jq);
            }
        }