Get the latest!

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

Syndication and sharing

loading
  • Posted on: Jun 03, 2009
    Rating:

    We designed EasySearch as both a full text search engine and a structured data search engine. This is to say that EasySearch can be used to search for named property values of EpiServer pages using common query operators. The cool thing is that it...

  • Syndicated blog - Posted on: Jun 01, 2009

    There has been quite a lot of talk about strongly typed property access lately. There has also been a few very interesting blog posts about how to achieve both strongly typed property access and page type inheritance. Fredrik Tjärnberg has develop...

  • Syndicated blog - Posted on: May 29, 2009

    1. Always use ID to select an element if you can. This is the fastest way to select elements. 2. Avoid selecting elements by class name. Selecting with class name only will make jQuery search every element in the entire page. If you need to select...

  • Posted on: May 29, 2009
    Rating:

    Recently I’ve been building a Relate+ demo site and one of things I did was upload a couple of videos. Relate+ has a nice feature where it takes your videos and uploads them to the Internet in a proper web format, so that your users can play them...

  • Syndicated blog - Posted on: May 29, 2009

    This is a very small (just one aspx, no code behind, ~130 rows) file that will show you everything you have in your cache. It can be very handy sometimes to see exactly what you have in the cache and even try and remove some things and see what...

  • Syndicated blog - Posted on: May 28, 2009

    Often we need to filter some of the pages in our PageDataCollection. Perhaps we wish to only show the pages that are published or that the user has access to. For this EPiServer has a few filter classes. Below you’ll find a some examples. More...

  • Syndicated blog - Posted on: May 27, 2009

    C# từ bản 2.0 có toán tử ?? rất tiện. Toán tử ?? tương tự như hàm isnull() trong T-SQL của SQL Server vậy. Nó hoạt động như sau: Nếu value1 là null thì sẽ trả ra value2; VD: Nếu dùng toán tử ?? string result = value1 ?? value2; Nếu viết bình thườn...

  • Posted on: May 27, 2009
    Rating:

    In the process of migrating a site I encountered a strange problem with asp.net ajax services. As you all probably are aware - there are two common approaches for running ajax in asp.net. UpdatePanel Webservices callable from javascript When the...