Entradas

Mostrando entradas de octubre 10, 2010

We are connected / Estamos conectados

Yes we're, what you think? You live here and the chinesse in mars? All we are in the same land, all we breath the same air... All we can be affected by same deseases... Of course we're differents in color, language and feet size. But as one of my favorites songs says "all we are made from stars" something like that. All the damage that you did in foreign country, foreign guy will do it in your own country. Do you like that way? Now think in your country as your everything.... ************** Si lo somos, o que creías? Que tu vives aquí y el chino en marte? Todos estamos en la misma tierra, respiramos el mismo aire... Todos podemos afectarnos de las mismas enfermedades... Claro somos diferentes en color, lengua y tamaño de los pies. Pero como dice una de mis canciones favoritas "todos estamos hechos de estrellas" algo así. Todo el daño que vas y causas en un país extranjero, un extranjero va a venir y causarlo en tu país también. Eso te gusta? Ahora piensa com

Generar Excel desde Asp.net C# / Generate Excel from Asp.net C#

Este código lo copié de la siguiente página (Original code from link below): http://www.buayacorp.com/archivos/exportar-el-contenido-de-un-gridview-a-excel/ Just create a page with a Gridview called GridView1 on it. Cree una página con un Gridview llamado GridView1 en ella. Then add a "Export to Excel" button and double clic on it, copy and paste the code below. Luego adiciona un botón "Exportar a Excel" y dele doble clic, copie y pegue el siguiente código: Yo adiciono las siguientes líneas para ahorrar un tiempito adicional: I add the following lines to save time: //added using System; using System.Collections.Generic; //using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; //end StringBuilder sb = new StringBuilder(); StringWriter sw = new StringWriter(sb); HtmlTextWriter htw = new HtmlTextWriter(sw); Page page = new Page(); HtmlForm form = new HtmlForm(); GridView1.EnableViewState = false; /