Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/12/2007, 11:01
hunabku
 
Fecha de Ingreso: diciembre-2003
Mensajes: 595
Antigüedad: 21 años, 1 mes
Puntos: 1
Re: Ayuda con Excel

Cita:
Iniciado por txarly Ver Mensaje
Yo utilizo una función que exporta el contenido de un Dataset a Excel, cuando supera el nº máximo de filas lo que hace es crear otra pagina y continuar añadiendo los resultados. Por si te sirve te dejo el código:



Un saludo
Oye una pregunta yo hago mi consulta asi

SqlConnection conn = new SqlConnection("Server=172.16.3.21;Database=Courier max;Uid=prueba;Pwd=prueba SqlCommand cmd = new SqlCommand();

cmd.CommandType = CommandType.Text;
cmd.CommandText = "select top * from cmusr.CM_CONTROL ";
cmd.Connection = conn;

DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(cmd);

da.Fill(ds);
DataGrid1.DataSource = ds;
DataGrid1.DataBind();

//y aqui invoco tu funcion asi o dime si la estoy invocando mal

ExportToExcel(ds,"prueba");





de ante mano te agradesco por tu ayuda