thinkinterview » interview questions » .NET
« Previous

.NET Interview Questions

next »
question

In asp.net 2.0 I want use same header and footer for number of pages. What are the best ways to do minimum level of code and how I can use?

Answer Description:

ASP.NET 2.0 master pages allow developers to develop a uniform and consistent layout for the pages in your ASP.NET 2.0 application. Master page defines the layout (look and feel) and standard behavior that developer wants for all of the pages (or a group of pages) in asp.net 2.0 application. Developer can then create individual content pages that contain the content you want to display. When users request the content pages, master page and content page merge to produce output that combines the layout of the asp.net 2.0 master pages with the content from the content page.

More on Master Pages


Next Queston » In asp.net 2.0 what is the best way to handle sql connection stat...

In asp.net 2.0 what is the best way to handle sql connection state?View full queston »