dotnetConf – The .NET Community Virtual Conference
Angry IP Scanner
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.
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; }