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
Twice a year, EPiServer arranges a conference for end users of EPServer CMS. This is a golden opportunity to come and listen to presentations about different user related topics, as well as to meet with other EPiServer CMS users and perhaps get so...
Are you also annoyed that EPiServer CMS 5 Friendly URLs and the handy trace.axd utility does not play well together? Does your site have standard aspx-pages that behaves strangely sometimes because EPiServer Friendly URL Rewriter interfere with...
This is a update to my previous post. EPiServer CMS 5 Release 2 will support kernel-mode response caching when you enable expirationTime on a VPP in web. config. Kernel mode response caching is handled by http. sys which is the HTTP protocol stack...
The EPiCode project is stronger than ever and 3 new modules have found its way to "Community source code heaven". The latest addition is a module from Henrik Nyström called PageTreeIcons . I have written a blog post on EPiCode about the feature li...
Hopefully you web designers and programmers is using CSS 2.1 today. But what about the next step... Well when you start develop sites that are larger then the normal small personal web site you will often get into trouble when the CSS standard can...
Had some trouble loading a vitrual file containing spaces. The problem was apperently that some characters were urlencoded, a simple Server.UrlDecode(CurrentPage[“DocumentPath”]) solved the problem. 🙂
I’ve had some problem to link to a page to another language then the current language. Even though I have a PageData-object with anouther languagebranch, it stills makes a link to the current language. My own solution, building a url by...
VirtualFile file = System.Web.Hosting.HostingEnvironment.VirtualPathProvider.GetFile( CurrentPage[“FilePath”].ToString() ); UnifiedFile f = file as UnifiedFile; return f.Length / 1024 + ” kb”;