Go to content

Go to employees

Go to search

Anders Murel blogg

Anders is a versatile developer who has specialized in EPiServer since 2007. He has participated in numerous web projects for small and large Scandinavian customers.

Anders Murel
 

Problems with WebServices after upgrade from .Net 3.5 to 4.0?

When upgrading a project from .Net 3.5 to 4.0, it seems the ScriptHandlerFactory entry is removed from the <handlers> section in Web.config. Here's how to solve this problem.


How to find Application root folder in Scheduled task (no HttpContext available)

In case you need a way to find the folder on the file system where your application runs when HttpContext is not available, you can use: string applicationPhysicalPath =  HostingEnvironment.ApplicationPhysicalPath; This is useful for instance when...

Tags:


Find recently changed pages

How to find the most recently changed pages in EPiServer.

Tags:


Require HTTPS on only some pages

One of our customers needed to require HTTPS/SSL on some of their pages that contained sensitive data.


Copy Properties From One PageType To Another

Ever had a pagetype that suddenly should have many of the same properties as another pagetype? Well, I have :) To solve the timeconsuming activity it is to create (many) new properties on a pagetype, I made this little tool.