Puedes usar lo siguiente también:
Código PHP:
Ver originalpublic void CargarDataGridView
(System.Windows
.Forms
.DataGridView ElDataGridView
, String Sql
, SqlConnection objConn
) {
SqlCommand ElComando = new SqlCommand();
SqlDataReader ElReader;
System.Data
.DataTable ElDataTable
= new System.Data
.DataTable
();
try
{
ElComando = new SqlCommand(Sql, objConn);
ElReader = ElComando.ExecuteReader();
ElDataTable.Load(ElReader);
ElDataGridView.DataSource = ElDataTable;
}
catch (Exception e)
{
throw (e);
}
}
Saludos!