System.Web.UI.WebControls.ChangePassword.SuccessDefaultTemplate.CreateRow C# (CSharp) Method

CreateRow() private method

private CreateRow ( Control c0, System.Web.UI.WebControls.Style s0, HorizontalAlign align ) : System.Web.UI.WebControls.TableRow
c0 Control
s0 System.Web.UI.WebControls.Style
align HorizontalAlign
return System.Web.UI.WebControls.TableRow
			TableRow CreateRow (Control c0, Style s0, HorizontalAlign align)
			{
				TableRow row = new TableRow ();
				TableCell cell0 = new TableCell ();

				cell0.Controls.Add (c0);
				cell0.HorizontalAlign = align;
				if (s0 != null)
					cell0.ApplyStyle (s0);

				row.Controls.Add (cell0);
				return row;
			}
ChangePassword.SuccessDefaultTemplate