System.Web.UI.WebControls.ChangePassword.BaseChangePasswordContainer.InitTable C# (CSharp) Method

InitTable() private method

private InitTable ( ) : void
return void
			void InitTable ()
			{
				_table = new Table ();
#if NET_4_0
				string id = _owner.ID;
				if (!String.IsNullOrEmpty (id))
#endif
					_table.Attributes.Add ("id", _owner.ID);

				_table.CellSpacing = 0;
				_table.CellPadding = _owner.BorderPadding;

				_containerCell = new TableCell ();

				TableRow row = new TableRow ();
				row.Cells.Add (_containerCell);
				_table.Rows.Add (row);

				Controls.AddAt (0, _table);
			}