dotnetcorner.ch blog

WinRT / Store App: Stacked content scrolled Horizontally0

27 March 2014
Christoph Keller Christoph Keller

Ever tried using the ScrollViewer Control for Vertically stacked elements and wanted to scroll only horizontally? Here is a short explanation.


Create error pages in Composite C10

23 March 2014
Christoph Keller Christoph Keller

Custom error pages in IIS look very great, but in case of a CMS, they seem to be too static most of the time. Here is a short explanation how you can create correct error pages with Composite C1 CMS.


Glimpse - Debugging made easy0

20 March 2014
Christoph Keller Christoph Keller

Glimpse shows execution timings, server configuration, request data and more, all in browser, with no changes to your application code. Just install the NuGet package, and you're good to go!


ASP.NET 4.0 Chart Control0

31 July 2011
Christoph Keller Christoph Keller

Today I would like to introduce the new Chart Control, which was newly added to the ASP.NET 4.0 Framework.


C# IDisposable pattern on sub-classes0

15 July 2011
Christoph Keller Christoph Keller

Scenario: I had a base-class which was implementing the IDisposable pattern (including the GC.SuppressFinalize() part). From this class, I inherited a sub-class which also required doing some disposing stuff.