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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









DataBinding

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

This class represents a design-time data binding, which is contained
in the DataBindingCollection. Generally, most
developers will create data bindings at runtime instead, which allows
increased flexibility and more transparent code.

You can configure data binding expressions by clicking the ellipsis
(...) next to the (DataBindings) option in the Visual Studio .NET
Properties window. Every data binding consists of an expression
identifying the source (Expression), the bound
property (PropertyName), and the data type
(PropertyType).

public sealed class 

DataBinding {
// Public Constructors
public

DataBinding (string

propertyName , Type

propertyType , string

expression );
// Public Instance Properties
public string

Expression {set; get; }
public string

PropertyName {get; }
public Type

PropertyType {get; }
// Public Instance Methods
public override bool

Equals (object

obj ); // overrides object
public override int

GetHashCode ( ); // overrides object
}



Returned By


DataBindingCollection.this

Passed To


DataBindingCollection.{Add( ), Remove(
)}


/ 873