ASP.net what is MasterPageFile attribute? -
<%@ page title="" language="c#" masterpagefile="~/views/shared/site.master" inherits="system.web.mvc.viewpage<modelcentral.abmodel>" %>
asp.net means masterpagefile attribute?
each .aspx page can reference master page. master page can define general layout specific page (obviously can use masterpage multiple pages).
imagine have standard website main menu, content area , footer. master page include main menu , footer since don't change. master page contains <asp:contentplaceholder>
later populated content of .aspx-page.
a master page can contain multiple <asp:contentplaceholder>
. in .aspx-page can use <asp:content>
control populate <asp:contentplaceholder>
content. note have match contentplaceholderid
of <asp:content>
correct id of `.
read this article more information on subject.
Comments
Post a Comment