SDL Tridion Interface Using .Net Master Pages

My question is about implementing a new user interface on the .net website, which is created using master pages.

Our solution uses the main .NET pages. Everything is configured as documented here ), since our main page uses the code <- INIT_SITE_EDIT β†’ at the end of the file to make sure the siteedit / i code is embedded correctly. When we browse the website and switch to the user interface, the main page actually opens (although the right content components are pulled for editing) ... but this makes it impossible to republish the full page within the new user interface.

Is there an easy way to fix this that I am missing? I'm afraid that I will have to do some manipulation of the code that is displayed by the default UI / siteedit code blocks in order to remove the correct tcm-id of the page.

Thanks in advance,

John

+5
source share
1 answer

To resolve this issue, the following steps have been taken:

  • Remove the SiteEdit / UI "Enable inline editing for page" template block from the master page template.
  • In DWT for content pages (where layout only tags <contentplaceholder>add value <!--SITE_EDIT_INIT-->inside the final.
  • Republish everything.

Hope this helps.

+2
source

All Articles