The following code shows how to use insert, delete and update in the Offline method of ADO.NET. With the help of ADO.NET we use the techniqueS of DataSet, DataAdapter, DataRowCollection, DataRow, DataColumn etc. for working with the database. //FOR INSERTION IN DATABASE SqlConnection conn = new SqlConnection ( "Server=(local);DataBase=Rohit;Integrated Security=SSPI" ); conn.Open(); SqlDataAdapter vAdap = new SqlDataAdapter ( "Select * from empNew" , conn); DataSet vDs = new DataSet (); vAdap.Fill(vDs, "EmpNew" ); DataTable vDt = vDs.Tables[ "EmpNew" ]; D...