ASP.NET 2.0: A Developeramp;#039;s Notebook [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET 2.0: A Developeramp;#039;s Notebook [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Chapter 2. Master Pages and Site Navigation

With Visual Studio 2005, ASP.NET now supports visual page
inheritance, which is similar to Windows Forms inheritance, for those
who have used that popular framework. With ASP.NET 2.0, you can now
create a single Master page that contains the common elements used by
the pages of your site. You can then create web pages that inherit
from the Master page to enforce a common look and feel across your
entire site.

Tip: Using Master Pages to provide page headers is preferred over the use
of Web User controls; only the
Master page needs to be changed and the rest will follow!

In ASP.NET 2.0, a new feature known as Master Pages addresses the
limitations of using Web User controls for headers and navigational
menu information. In ASP.NET 2.0, you can simply construct a Master
page that includes your page header information. You then build each
page of your site by first inheriting from the site Master page.

Note: Cool! Now Master Pages make it simple to apply a consistent
look and feel throughout my site. No more Web User controls to
grapple with!

/ 102