2013-05-12 135 views
0

我正在使用剃刀視圖引擎開發我的MVC項目。我有一個使用aspx視圖引擎創建的應用程序。所以我無法理解某些元素之間的區別。Asp.net mvc aspx視圖和剃刀視圖轉換

Aspx觀點有contentplaceholderscontents。剃鬚刀的等價物是什麼?

<asp:Content ID="TitleContent" ContentPlaceHolderID="TitleContent" runat="server"> 
    <asp:ContentPlaceHolder ID="TitleContent」 runat="server"> 
    </asp:ContentPlaceHolder> 
</asp:Content> 

回答

0

內容標籤的Razor相當於章節。 Razor中的代碼如下所示:

@section TitleContent { 
    @RenderSection("TitleContent", true) @* true makes this section required in any views that use this layout *@ 
}