Insert all data of a datagridview to database at once

Insert all data of a datagridview to database at once

Contoh source code nya di c#,silakan convert sendiri ke aspx.vb .. :D
string StrQuery;
try
{
    using (SqlConnection conn = new SqlConnection(ConnString))
    {
        using (SqlCommand comm = new SqlCommand())
        {
            comm.Connection = conn;
            conn.Open();
            for(int i=0; i< dataGridView1.Rows.Count;i++)
            {
                StrQuery= @"INSERT INTO tableName VALUES (" 
                    + dataGridView1.Rows[i].Cells["ColumnName"].Value +", " 
                    + dataGridView1.Rows[i].Cells["ColumnName"].Value +");";
                comm.CommandText = StrQuery;
                comm.ExecuteNonQuery();
            }
        }
    }
}