Hello all I am currently looking into making my Creative Website Wizard package ready for V4 of Umbraco and with this I will move away from the OLD templating system to the NEW ASP.NET MasterPages support. With this I thought I would share with you all the new Syntax for the Umbraco functionality.
Page Fields
Before
<?UMBRACO_GETITEM field="pageName"/>
After
<umbraco:Item field="pageName" runat="server"/>
Macros
Before
<?UMBRACO_MACRO macroAlias="XSLTNavi" ></?UMBRACO_MACRO>
After
<umbraco:Macro macroAlias="XSLTNavi" Alias="XSLTNavi" runat="server"/>
Child Template
Before
<?UMBRACO_TEMPLATE_LOAD_CHILD/>
After
<asp:ContentPlaceHolder ID="MasterTemplateContentPlaceHolder" runat="server"></asp:ContentPlaceHolder>
More information
For more information on ASP.NET Master Pages I recommend this site:
http://www.asp.net/Learn/master-pages/