February 19th, 2015
  • Programmically change items
  • EPiServer
  • NullReferenceException
  • Html.RenderAction

Programmatically changing EPiServer items - The nice way

When you use MVC and you use Html.RenderAction within your view, you cannot use the 'Alloy' logic to programmatically add, update or remove pages and/or blocks in EPiServer within your action or constructor. If you do, you can expect an 'Object reference not set to an instance of an object' upon your 'Html.RenderAction' line when you try to edit the page in the EPiServer backend.

With the 'Alloy' logic I mean:

PrincipalInfo.CurrentPrincipal = new GenericPrincipal(new GenericIdentity("Task"), new[] { "Administrators" });
/* Update, modify or delete EPiServer items */
PrincipalInfo.CurrentPrincipal = null

This NullReferenceException occurs because you dump your EPiServer user for the rest of your request and this causes EPiServer to not know which language, etc. to use to render the action.

But even without the NullReferenceException, this is not the right way to remove the temporary created administrator principal.

You could better create a SecurityDisabler:

using EPiServer.Security;
using System;
using System.Security.Principal;

namespace Your.Namespace
{
    public class SecurityDisabler : IDisposable
    {
        private readonly IPrincipal _principal;

        public SecurityDisabler()
        {
            _principal = PrincipalInfo.CurrentPrincipal;
            PrincipalInfo.CurrentPrincipal = new GenericPrincipal(
            new GenericIdentity("Task"),
            new[] { "Administrators" });
        }

        public void Dispose()
        {
            PrincipalInfo.CurrentPrincipal = _principal;
        }
    }
}

Using it you can change EPiServer pages and/or blocks programmatically without ever having any side effects:

using (new SecurityDisabler())
{
    /* Update, modify or delete EPiServer items */
}
< Previous post Overview posts Next post >
Ljunghall, S, <a href=https://enhanceyourlife.mom/>priligy for pe</a>
immarry, September 25th, 2024
Assessment of Ganglion Blocking Activity in the Isolated Bovine Retractor Penis Muscle <a href=https://enhanceyourlife.mom/>priligy buy</a>
encombcog, September 25th, 2024
The right and left lungs were congested and together weighed 1600 g normal, 800 <a href=http://cialis.lat/discover-the-best-prices-for-cialis>cialis online without prescription</a> The maintenance phase is characterized by a sustained severe reduction in GFR that persists for a variable length of time, most commonly 1 2 weeks
alurnette, July 21st, 2024
<a href=http://sildenafil.buzz>does viagra make you harder</a> In fact, the administration of oestrogen to post menopausal women is associated with a decrease of bone resorption
Peergiz, January 5th, 2024

Leave a comment

= Thanks for your comment =