Master page allows us to share the common content as well as layout to multiple pages. The best example is to show same header and footer and the same layout across different pages of the website. For example on ITFunda.com - an ASP.NET online training website you can notice that all pages have same header and footer but in between content is different. The layout in which header and footer exists is the master page (.master) and rest content comes from the content page (.aspx page).

In this article, let us learn how to create and use master page in ASP.NET. As discussed Master page is used to create uniform look and feel to different pages of the website or web application.

Create a master page by right clicking the project and clicking on Add New Item ... as displayed in picture below

Read More....