In the EPiServer file upload dialogue, there is a section for adding meta data to an uploaded file such as Title, Link, Description, Author and Publisher. These form fields are implemented using XForms and configured in FileSummary.config.
The headings for these fields are defined directly in HTML markup containing the XForms controls a...
how we can design an episerver site with multilaguage support using resource files.
...
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...
Anybody knows what properties are available as folder names when using Mirroring Service to HTML in EPiServer 4? (Dont know if this is different from newer versions)
When using the 'PageName' property the service breaks because the length of the fully quilified directory path exceeds 260 characters (Limited by the Windows filesystem)
...
How can I get the path of a cs file in aspx?
Here's the issue: I've created a property class in a property.cs file which is used in an EPiServer admin module. Server.MapPath() will hence return the path of the executing file, which is in a totally different place than my code. I need to get the path of the property.cs file (from inside ...
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?
...
I'm trying to manually install the EPiServer scheduler service on a web server using installutil.
I run this at the command promp:
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\installutil D:\EPiServerSchedulerService\EPiServer.SchedulerSvc.exe
And get an error:
No public installers with the RunInstallerAttribute.Yes attribute could ...
At this point we are developing Sitecore websites and we are gaining experience every day. This means that we know how to adjust our approach to different types of customers and that we are able to build our applications quicker every project we do. Offcourse Sitecore is not the only W-CMS around and we have looked into other W-CMS's.
W...
Is there a way to make Episerver leave the HTML id attribute alone and more importantly how much work is that?
I know you could also remove the viewstate, how much work is that?
I'm not here to start a discussion about semantics and optimization, whether or not a CMS should touch the front-end code is a long debate. I just need to know...
I used the NuPack tool to add Elmah to a site on my developer machine. This worked like a charm, but when I send a request to the elmah.axd page all I get in return is 500 - Internal server error.
My code setup:
Visual Studio 2010
Site built on top of EPiServer 4.62B
Running on .NET Framework 2 (because of EPiServer)
My IIS setup:
IIS ...
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...
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 ...