website – Miniprofiler for ASP.NET web site – Stack Overflow.
Category: Uncategorized
How to Use The HTML5 Sectioning Elements | Treehouse Blog
Python for C# Developers
Scheduled jobs in EPiServer CMS 6 – long running and sending status updates back to the UI
“There are a few hidden bits in EPiServer CMS 6 that hasn’t been talked much about, one of them being the enhancements to the scheduled jobs. These new features include the ability to interrupt the execution of a long running job and for these jobs to send status updates to the UI.”
Scripting .NET Applications with IronPython – CodeProject
jQuery – get a list of values of an attribute from elements – Stack Overflow
$”.object”.attr”level” will just return the attribute of first the first .object element.This will get you an array of all levels:
var list = $”.object”.mapfunction{return $this.attr”level”;}.get;
via selectors – jQuery – get a list of values of an attribute from elements of a class – Stack Overflow.
Simple SQL script for searching for a certain word in all EPiServer 6 pages
The fkPageID value points to the actual page id which you can search for in EPiServer UI.
The string could be in a page in the Recycle Bin or maybe even in a previous page version…
SELECT * FROM [myEpi6db].[dbo].[tblProperty] where string like '%support@mysite.com%' or LongString like '%support@mysite.com%'
This is on a EPiServer 6r2 db.