R – ASP. NET Master pages – do you use them

asp.netmaster-pages

I'm learning ASP.NET using a great Sitepoint book, and I'm also learning more about CSS. I'm undecided on how useful Master Pages are. Could someone let me know whether the real world use mater pages – and if they don't what do they do?

Cheers
Mike

Best Answer

Yes, we absolutely use them. Typically you will use master pages to handle your header, footer and navigation sections that are consistent through-out all the pages in your website.

This follows the DRY principle of not having to repeat yourself when creating new web forms.