how to change page theme at runtime without login using cook

Posted by Community Admin on 04-Aug-2018 08:20

how to change page theme at runtime without login using cookies

All Replies

Posted by Community Admin on 01-Feb-2011 00:00

Hi ,

User want to change theme of page at runtime without login. Currently following function is available to change the page theme at  runtime but it works only if user is login.

  var manager = Telerik.Sitefinity.Modules.Pages.PageManager.GetManager();
            SiteMapNode currentNode = Telerik.Sitefinity.Web.SiteMapBase.GetCurrentProvider().CurrentNode;
            Guid pageId = ((PageSiteNode)currentNode).PageId;
            var draft = manager.EditPage(pageId, true);
            draft.Theme = DropDownList1.SelectedValue;
            manager.PublishPageDraft(draft.Id, true);
            manager.SaveChanges();
            SiteMapBase.Cache.Flush();
            Response.Redirect(currentNode.Url);

But i want to change the page theme without login. i am using sitefinity 4.0. Please guide me in detail because there is no much help is available for SiteAffinity4.0.

thanks
Saqi

Posted by Community Admin on 03-Feb-2011 00:00

Hello saqib,

You can use manager.Provider.SuppressSecurityChecks = true; when you get the manager. Then you will not be required to authenticate.

Best wishes,
Radoslav Georgiev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed