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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









OutputCacheLocationserializable

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

You can enable output caching for an ASP.NET page by using the
System.Web.HttpCachePolicy class or adding a page
directive. This enumeration is used by ASP.NET when it calls the
Page.InitOutputCache( ) method. It specifies
whether the page is cached locally on the client
(Client), on the web server
(Server), or on another server between the client
and the web server (Downstream).

public enum 

OutputCacheLocation {

Any = 0 ,

Client = 1 ,

Downstream = 2 ,

Server = 3 ,

None = 4 ,

ServerAndClient = 5
}



Hierarchy


System.Object
System.ValueType
System.Enum(System.IComparable,
System.IFormattable
,
System.IConvertible)
OutputCacheLocation

Passed To


Page.InitOutputCache( )


/ 873