Advantages of using Master Page in ASP.NET

Advantages of using Master Page in ASP.NET.

- A Master page offers a template for one or more web forms.

- It defines placeholders for the content, which can be overridden by the content pages.

- The content pages contain only content.

- When users request the content page, ASP.NET merges the layout of the master page with the content of the content page and produce output.

Advantages of Master Page in ASP.NET:

- Master pages enable consistent and standardized layout of the website.

- You can make layout changes of the site in the master page instead of making changes in the pages.

- It is very easy to implement.

- It provides an object model which allows you to customize the master page from individual content pages.

- It allows you to centralize the common functionality of your pages so that you can make updates in just one place.
ASP.NET Multiple Master Page
ASP.NET Multiple Master Page - In ASP.NET, you can have multiple master pages each for a different purpose....
ASP.NET Master Page
ASP.NET Master Page - Steps to create Master Page - Right-click your web project in the Solution Explorer window....
Session, SessionId and Session State in ASP.NET
ASP.NET - Session, SessionId and Session State - A session is the duration of connectivity between a client and a server application.....
Post your comment