Argentini.Halide.H3DataRow.H3DataRow C# (CSharp) Method

H3DataRow() public method

Instantiate the class with a Control object reference. This is used to read in a group of controls and their values from within the parent control. If using the "Exec()" method, this allows the developer to easily save a submitted form to a database without having to manually process and pass the stord procedure parameters. Uses the default connection string "Halide".
public H3DataRow ( Control containerControl ) : System
containerControl System.Web.UI.Control Control object with submitted form data.
return System
        public H3DataRow(Control containerControl)
        {
            DataPresent = true;
            ConnectionStringName = "Halide";
            Column = new DatabaseRow();
            LoadForm(containerControl);
        }

Same methods

H3DataRow::H3DataRow ( Control containerControl, String UseconnectionStringName ) : System
H3DataRow::H3DataRow ( H3DataRowConfig DataCon ) : System
H3DataRow::H3DataRow ( Halide reader ) : System
H3DataRow::H3DataRow ( String connectionStringName ) : System
H3DataRow::H3DataRow ( String sqlCommand, String UseconnectionStringName ) : System