Решение: установить у панели style=”display: none;”
KeyBoard ShortCuts
Решение: Статья – http://visualstudioshortcuts.com/2013/ Analyze Navigate Backward Shift+Alt+3 Navigate Forward Shift+Alt+4 Architecture New Diagram Ctrl+\, Ctrl+N Architecture Context Menus Add Node Ins Both Dependencies B Incoming Dependencies I Outgoing Dependencies […]
Fixing the “circular file references are not allowed” Error in ASP.net
Решение: Статья – http://ellisweb.net/2009/12/fixing-the-circular-file-references-are-not-allowed-error-in-asp-net/ либо надо положить ссылающиеся классы в одну папку, либо Use batch=”false” in the compilation tag of the web.config file (не рекомендуется) Статья – http://ilearnable.net/2012/08/16/aspnet_compiler-circular-file-references-are-not-allowed-or-how-bad-neighbors-can-ruin-the-neighborhood/
FileUpload не живет вместе с UpdatePanel
Решение: Использовать AsyncFileUpload
DateTime.ToString(MMddyyyy) теряются слеши – вместо них ставятся точки
Решение: Использовать txtExpiryDate.Text = DateTime.Now.AddYears(10).ToString(“MM/dd/yyyy”, CultureInfo.InvariantCulture);
Как создать простой jQuery UI виджет
Решение: 1.Подключить jQuery UI 2.Нарисоватьразметку 3.Заготовка (файл jquery.ui.inbox.js) $.widget(‘ui.inbox’, { options: { title: null }, _init: function () { var title = this.options.title; if (title !== null) { this.element .children(‘h1:first-child’) […]
Как правильно снимать значение с флажка
Решение: var b = $(this).is(‘:checked’);
Функция JS Replace ищет только первое совпадение
Решение: надо использовать в 1 параметре g – /text/g var tmp = “AABAA”; tmp = tmp.replace(/AA/g, “A”); alert(tmp);
Раскрашивание console.log
Решение: console.log(‘%c Oh my heavens! ‘, ‘background: #222; color: #bada55’);
Просмотр JSON
Решение: Позволяет просматривать json http://jsonviewer.stack.hu/