November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Follow bloggers on Optimizely World to get the latest from people who know all about the Optimizely platform! You will find blog posts from the entire Optimizely community, as well as from the Optimizely development teams.
Start blogging - create your own blog (requires log in)
Manage your blog posts on Optimizely World (requires log in)
Rules for blogging on Optimizely World
In the released version of EPiServer CMS 5 (version 5.1.422.4) there is a problem when using UpdatePanel when FURL (Friendly URL) is activated on the site. The problem occurs because the AJAX callbacks from UpdatePanel will in some cases update th...
Just go to MSDN Subscriber Downloads and fetch RC1, if you don't have a MSDN account you will have to wait another week for this release. If you're an EPiServer employee you find it at P:\Microsoft Windows 2008\RC1. Also, RC1 of Windows Vista SP1...
I need read opml and translate it to my objects. Instead of work with Xml Document I use System.Xml.Linq : using System.Xml; using System.Xml.Linq; ... ... XmlReader reader = new XmlTextReader(opmlUrl); XElement opml = XElement .Load (reader);...
A very nice sidebar gadget for your Remote Desktop connections, get it here. Requires Windows Vista ofcourse.
I hope you find my research on the new EPiServer CMS Unified File System useful. Here are some example code to get you going. The most tricky part is to manually create a page folder if it does not exsist Getting a handle to an existing file:...
With Syndication library it is really easy to read and write rss/atom. Here is some code: using System.ServiceModel.Syndication; ... ... SyndicationFeed feed = SyndicationFeed .Load (new System .Xml .XmlTextReader (textBox1 .Text )); int i = fee...
I had a tricky support case today related to Globalization and Dynamic Properties. I will try to share what I found in the end of this blog post. Background It is a common problem that you start an EPiServer project without thinking of Globalizati...
Sample code on how to get the Scrum teams for a specified Team Project in TFS using Conchango's scrum process template. Also implements caching. public string[] GetScrumTeams(TeamFoundationServer tfs, string tfsProject){ ArrayList teams =...