$ 0 0 Adding a new datarow to dataset DateTable dt = new DataTable(); DataRow DRow = dt.NewRow(); DRow[0] = “First Column of New Row”; dt.Rows.Add(DRow); //Dset.Tables[“TableName”]. Add(DRow); Udhaya Pisquare