System.Web.UI.Control.DataBindChildren C# (CSharp) Method

DataBindChildren() protected method

protected DataBindChildren ( ) : void
return void
		protected virtual void DataBindChildren ()
		{
			if (!HasControls ())
				return;

			int len = _controls != null ? _controls.Count : 0;
			for (int i = 0; i < len; i++) {
				Control c = _controls [i];
				c.DataBind ();
			}
		}