The document discusses nested master pages in ASP.NET. It provides an example of a parent master page that contains common elements like a banner and navigation. It then shows how to create a child master page for a specific department that inherits from the parent master page and can add additional department-specific content. The child master page example includes two content placeholders that are filled by content pages. The last section briefly discusses site navigation controls in ASP.NET that allow defining a site map to provide navigation across a website.
The document discusses nested master pages in ASP.NET. It provides an example of a parent master page that contains common elements like a banner and navigation. It then shows how to create a child master page for a specific department that inherits from the parent master page and can add additional department-specific content. The child master page example includes two content placeholders that are filled by content pages. The last section briefly discusses site navigation controls in ASP.NET that allow defining a site map to provide navigation across a website.
The document discusses nested master pages in ASP.NET. It provides an example of a parent master page that contains common elements like a banner and navigation. It then shows how to create a child master page for a specific department that inherits from the parent master page and can add additional department-specific content. The child master page example includes two content placeholders that are filled by content pages. The last section briefly discusses site navigation controls in ASP.NET that allow defining a site map to provide navigation across a website.
The document discusses nested master pages in ASP.NET. It provides an example of a parent master page that contains common elements like a banner and navigation. It then shows how to create a child master page for a specific department that inherits from the parent master page and can add additional department-specific content. The child master page example includes two content placeholders that are filled by content pages. The last section briefly discusses site navigation controls in ASP.NET that allow defining a site map to provide navigation across a website.
You can create a Master page that is nested inside
another master page
For example, you could create a parent master page that has a company banner at the top and site navigation controls in a side column. You could then create a child master page for a specific department or product that uses the parent master page. It could also act as a master page for all other related department or product pages.
A website is a collection of web pages. The information
that needs to be shared by the website is contained in
these web pages. Therefore, these web pages should be linked in such a manner that a user can easily move to the desired page Moving between Web pages on a website is known as navigation. To provide a smooth navigation on a website, you need to provide a path that can direct a user to any part or Web page on the website. This path is known as navigation path.
ASP.Net provides site navigation feature that provides
a consistent way to navigate a website.
This feature enables u to store the structure of your website at a central location. This structure contains the links to all the web pages on your website and is known as a site map This sitemap contains links to all web pages in website The sitemap can be rendered on each page by using controls such as TreeView, SiteMapPath or Menu.