0

I am learning Umbraco. The installed version on my machine is 7.1.3(if I am correct, at least I am sure it's V7), but the free video tutorials uses V6(WebForm) or earlier version.

I saw the guy clicked a button "Insert content area placeholder" on a template page, but I cannot find it on the V7 template page.

Does anyone know how to do this in V7(MVC)?

Thank you.

Franva
  • 6,565
  • 23
  • 79
  • 144

1 Answers1

1

Using webforms:

<asp:ContentPlaceHolder Id="YOURNAMEGOESHERE" runat="server" />

Using MVC:

@section YOURNAMEGOESHERE {
    <!-- YOUR CONTENT GOES HERE -->
}
user3556163
  • 114
  • 1
  • 10