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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









PersistenceModeserializable

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

This enumeration provides values for the
PersistenceModeAttribute.
PersistenceModeAttribute.Attribute instructs
ASP.NET to persist a property in a control's HTML
tag as an attribute. This is the default and does not require the use
of the PersistenceModeAttribute. You can also use
PersistenceModeAttribute.InnerDefaultProperty or
PersistenceModeAttribute.EncodedInnerDefaultProperty
to designate a property as the inner content of control tag. Only one
property can be used in this way, and the only difference between
these two options is whether the ASP.NET framework will automatically
perform HTML encoding before persisting the value. Finally,
PersistenceModeAttribute.InnerProperty persists
the property as a nested tag inside the control tag.

public enum 

PersistenceMode {

Attribute = 0 ,

InnerProperty = 1 ,

InnerDefaultProperty = 2 ,

EncodedInnerDefaultProperty = 3
}



Hierarchy


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

Returned By


PersistenceModeAttribute.Mode

Passed To


PersistenceModeAttribute.PersistenceModeAttribute(
)


/ 873