Skip to content

What is Master Page in ASP.NET ?

Posted in Education, and WhoCodeFirst

Master pages allow you to create a consistent look and behavior for all the pages (or group of pages) in your web application.

A master page provides a template for other pages, with shared layout and functionality. The master page defines placeholders for the content, which can be overridden by content pages.

The output result is a combination of the master page and the content page. The content pages contain the content you want to display.

When users request the content page, ASP.NET merges the pages to produce output that combines the layout of the master page with the content of the content page.

More Info on Master Page

If you enjoyed this article, Get email updates (It’s Free)
Translate »