Questions tagged [episerver]

Episerver is a web content management system and e-commerce platform based on .NET.

Episerver is an ASP.NET-based CMS (Content Management System) and e-commerce platform.

Information about Episerver development is best found at: http://world.episerver.com

General company information about Episerver is found at: http://www.episerver.com

In 2021, Episerver acquired Optimizely, and started its rebranding to gather under the Optimizely name.

Since the release of the most current versions (CMS 12 and Commerce 14), the products run on .NET 5/6.

728 questions
0
votes
2 answers

episerver 4 - Adding form tag in the editor

Im currently working with an old version of EPiServer. In the editor I need to add html like this:
Cliff Smith
  • 109
  • 1
  • 1
  • 10
0
votes
1 answer

Events only fire first time

I have an episite with an xForm that i am trying to manipulate before it is submitted. Im trying to get the formdata att the global.asax like this: public void XFormControlSetup(object sender, EventArgs e) { …
Daarwin
  • 2,896
  • 7
  • 39
  • 69
0
votes
1 answer

Is it possible to sort ImageVault on Filetype AND Filename?

I am sorting the images in my ImageVault with the following code: //ImgListControl is of type:ImageStoreNET.Developer.WebControls.IVFileList ImgListControl.SortBy = IVFileSortBy.FileName; ImgListControl.SortDirection =…
matskn
  • 1,290
  • 6
  • 17
  • 30
-1
votes
1 answer

How to return result correctly so that I can access it from the view?

I am trying to build a custom report in the EpiServer Report Center to display a table of all users. I have created a ViewModel and am trying to populate a variable called UserStore: using EPiServer.Cms.UI.AspNetIdentity; using…
BrokenCode
  • 951
  • 4
  • 19
  • 43
-1
votes
1 answer

How to get IContentLoader instance using constructor injection

I Have this code var loader = EPiServer.ServiceLocation.ServiceLocator.Current.GetInstance(); I want to get the instance of IContentLoader using constructor injection.
Janmejay Kumar
  • 309
  • 2
  • 7
-1
votes
2 answers

Why use Service Bus when deploying EPiServer CMS to Azure?

My task is to deploy an EpiServer 7 CMS site that has been running on-prem VM to Azure web app, two instances. In the guide I found at link is telling me to set up Service Bus. Does anyone know why I need the SB?…
-1
votes
1 answer

Remove Global.asax and Run EPiServer CMS MVC from Owin Startup.Configuration

I'm required to write some custom middleware to work with EPiServer CMS. I'd like to remove Application_Start() and run everything from StartUp.Configuration() This seems possible with a baseline MVC 4 application since you can register routes and…
RobotOptimist
  • 346
  • 3
  • 8
-1
votes
2 answers

EPiServer Search only search for base types

I have a pagetypefilter in my search function and have a scenario where page b inherits from page a. When I check the page a option in my filterlist I still get hits which type is page b. Is it possible to only search for basetypes in EPiServer…
dont_trust_me
  • 540
  • 8
  • 24
-1
votes
1 answer

What's the correct way to link to EPiServer shell style sheets in an EPiServer plugin?

I have an EPiServer plugin that links to style resources like this
Andreas
  • 2,336
  • 2
  • 28
  • 45
-1
votes
2 answers

Episerver contentarea block horizontal

When i put blocks inside my contentarea the blocks align just fine but inside of edit-mode the "edit-boarder" gets messed up. Does anyone have any idea how to figure this out? See picture for more details http://postimg.org/image/7wyue4nvv/ Code for…
SimEkh.
  • 1
  • 2
-1
votes
1 answer

EPIServer mulit-language routing can't work

I have two pages used same page type, the url like following http://website/en/{node}/GUID http://website/client/en/{node}/GUID (By the way, the 'client' will change for different language) I created a router like this…
Eric
  • 3
  • 2
-1
votes
1 answer

EPiServer 7 & Mvc - Local Block with Controller (and tag) - doesn't auto refresh in On Page Editing

I am using EPiServer 7.5+ and have a scenario where some of my Local Blocks are not updating after being edited in the On Page Editing window. I either have to do a full page refresh after editing the impacted Local Block, or use the…
Philip Pittle
  • 11,821
  • 8
  • 59
  • 123
-1
votes
1 answer

How do i get dynamic properties using EPIServer webservice

I'm trying to get a dynamic property using EPIServer Webservice. The only thing a see I can do is create new properties using PageStoreService.RawProperty dynProperty = new PageStoreService.RawProperty(); dynProperty.IsDynamicProperty = true; but…
Andreas
  • 2,336
  • 2
  • 28
  • 45
-1
votes
2 answers

EPiServer: CS1061: 'System.Web.UI.Control' does not contain a definition for 'CurrentPage' ...?

have a little problem with this EPIServer error: CS1061: 'System.Web.UI.Control' does not contain a definition for 'CurrentPage' and no extension method 'CurrentPage' accepting a first argument of type 'System.Web.UI.Control' could be found (are you…
Tinko
  • 27
  • 1
  • 3
-2
votes
2 answers

How to get the property value of the page which is requested by user in episerver cms

How to get the property value of the page which is requested by user in episerver cms 10... public string GetContent(string pageType, string propertyName) { Type type = Type.GetType(pageType); //target type object o =…
Mohan Raj
  • 25
  • 1
  • 6
1 2 3
48
49