Решение: Надо сделать период проверки активности поменьше в вебконфиг. <membership userIsOnlineTimeWindow=”1″ defaultProvider=”RDN_MembershipProvider”>
В IE первый элемент в Menu чуть выше – на пару пикселов
Решение: у них разное выравнивание (один по центру, другой – по низу), помогло padding-top а вообще лучше его просто не использовать
Web Site vs Web Project
Решение: Статья – http://stackoverflow.com/questions/398037/asp-net-web-site-or-asp-net-web-application Статья – http://msdn.microsoft.com/en-us/library/dd547590.aspx
Modal popup мелькает при загрузке страницы
Решение: установить у панели 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’);