episerver-6

EpiWebParts in EpiServer 6

We want to add a web part framework to our EpiServer intranet. I've found this which is probably what we want. However there's no installation instructions for use under EpiServer 6 - can anyone advise on how to get started with using this framework on the current release of EpiServer? ...

Is it possible to import/export EPiServer Community data (entity and attribute)?

Hi, I'm working on EPiServer Community 4 project. In development phase, I setup some predefine entity data (add some clubs, some forums, ...) and create/assign attribute to them. How can I export those data (entity data and its attribute/attribute value) and import later? (I will import when installing my product for customer). Thank...

Where is the PlugInArea.WorkRoom in EPiServer CMS 6

I've created a GuiPlugIn in EPiServer CMS 6 and as I was doing it, I noticed that the PlugInArea enum has a WorkRoom value. If I set my GuiPlugIn to target PlugInArea.WorkRoom, where in the CMS will it be displayed? ...

NullReferenceException When Getting Latest Topics and Replies For Forums in User's Clubs

I'm trying to query the set of forums (fora?) for the user's clubs to get the latest topics and replies in those forums. This is the code I'm using: RoomCollectionCriterion userClubRoomsCollection = new RoomCollectionCriterion(); foreach (Club userClub in userClubCollection) { RoomCriterion userClubRoomCriterion = new RoomCriterion...

Finding New and Updated Pages in EpiServer

I have a requirement to display lists of newly-created and updated pages in our Episerver intranet - say the last ten of each. I've tried using FindPagesWithCriteria but this returns no results. Here's the code I've tried: PageDataCollection recentPages; PropertyCriteriaCollection criteria; PropertyCriteria upperBound; PropertyCriteria ...