ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

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

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

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









StaticPartialCachingControldisposable

System.Web.UI (system.web.dll)class

When you include a user control on your page, and specify that it
should be cached (either by using the standard
OutputCache directive in the

.ascx file, or the
PartialCachingAttribute in the the user
control's code-behind file), an instance of the
StaticPartialCachingControl class will be placed
in the control hierarchy of the page as a parent to the cached user
control.

public class 

StaticPartialCachingControl : BasePartialCachingControl {
// Public Constructors
public

StaticPartialCachingControl (string

ctrlID , string

guid , int

duration , string

varyByParams ,
string

varyByControls , string

varyByCustom , BuildMethod

buildMethod );
// Public Static Methods
public static void

BuildCachedControl (Control

parent , string

ctrlID , string

guid , int

duration ,
string

varyByParams , string

varyByControls , string

varyByCustom , BuildMethod

buildMethod );
}



Hierarchy


System.Object
Control(System.ComponentModel.IComponent,
System.IDisposable
, IParserAccessor,
IDataBindingsAccessor)

BasePartialCachingControl
StaticPartialCachingControl


/ 873