Angry IP Scanner (or simply ipscan) is an open-source and cross-platform network scanner designed to be fast and simple to use. It scans IP addresses and ports as well as has many other features.
Author: Andreas Plahn
EPiServer workflows in EPiServer CMS – EPiServer CMS note
Search on EPiWiki.se
via EPiServer workflows in EPiServer CMS – EPiServer CMS note.
EPiServer Commerce Cache handling
Just a snippet from my Certification studies:
//Commerce Cache handling
//cache invalidation time is configured in ecf.[objecttype].config
//e.g. ecf.catalog.config element
CatalogCache.Clear(); //clears the entire catalog cache
CatalogCache.Remove(“entrykey”); //invalidate a specific entry
CustomersCache.Clear(); //clear all customers cache
MarketingCache.Clear();
OrderCache.Clear();
SecurityCache.Clear();
EPiServer Commerce Performance optimization
EPiServer Commerce 7.5 Documentation Developers Guide
7.5.
Current File Path on the Footer VS Extension | Coding4Fun Blog | Channel 9
How to hide a inherited PageTypeBuilder property
This will hide the property visibility for Editors in EPiServer.
Just override the property and hide with DisplayInEditMode = false.
[PageTypeProperty(DisplayInEditMode = false)] public override string ShortHeading { get; set; }
HangFire – Background job processing for ASP.NET
QueueBackgroundWorkItem to reliably schedule and run background processes in ASP.NET – .NET Web Development and Tools Blog – Site Home – MSDN Blogs
ide – Visual Studio 2013 Update 2 – C# navigation bar drop down menus not working – Stack Overflow
The dropdown menus in the code editor stopped working in Visual Studio 2013 for me.
The problem is a bug when using multiple monitors and a “leftmost” monitor that is not the “main” display…
The solution is quite simple for now: make your leftmost monitor the main monitor.
A bugfix is coming, included in next Visual Studio update.
More info:
ide – Visual Studio 2013 Update 2 – C# navigation bar drop down menus not working – Stack Overflow.