DataBinding

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( )}



ASP. NET in a Nutshell
ASP.NET in a Nutshell, Second Edition
ISBN: 0596005202
EAN: 2147483647
Year: 2003
Pages: 873

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net