After blogging a long time on BlogEngine.Net I thought it was time to switch to WordPress. The conversion wasn’t great. The biggest problem was that the syntax highlighter is not compatible and the image where not exported. But the content is here, excluding the images. I will try to clean it up and add More Info »
As from the 1st of january I’m the new solution architect for Sitecore the Netherlands. My responsibilities wil be: Technical Presentations and demonstrations Providing Technical Trainings Defining Sitecore architecture/blueprint for customer and partners Developing CMS relevant (sales) propositions Develop demo’s and POC with sales, product specialist and product development Support local sales More Info »
In this example I´m going to explane the strategy pattern. With this example you can do a calculation with two numbers (-/+) and expand the number of operators (/, *, etc.). First create a interface which defines the interface of the operator classes. For this example an operator can only calculate two More Info »
As proof of concept I wanted to sort images in a Grid by keyboard. The sort logic needed to be implemented on the server. My solution for this problem is a combination of Javascript and C#. First add following html to you .aspx. Notice that the body tag has runat=”server” and a More Info »
After seeing a great XBOX360 friends Iphone App I decided to build a Windows Mobile version of it. The app shows your friends, their avatar, online status and what they are playing. After downloading the VS plugins for Windows Mobile development I started building the app. Building Windows Mobile Apps is easy. The More Info »
I use the following method to return a parent control of a specific type. This method is recursive and uses generics. <br /> private Control GetParentControl<T1>(Control control)<br /> {<br /> if (control.Parent.GetType() == typeof(T1))<br /> {<br /> return control.Parent;<br /> }<br /> else<br /> {<br /> return GetParentControl<T1>(control.Parent);<br /> }<br /> }</p> More Info »
A few years after building the free travelblog site Globallog.nl in PHP. I started building a new version in .Net together with Mark. Although this was a joyful and educational experience, we never finished this project… Now a few years later I finished a new travelblog portal; Gaatverweg.nl. Gaatverweg.nl is build with More Info »
[...] using Sitecore Rocks Query. There are some really handy blog post ...