07/04/2006, 08:55
|
| | Fecha de Ingreso: diciembre-2003 Ubicación: WWW
Mensajes: 98
Antigüedad: 21 años Puntos: 0 | |
¡Hola!
Esto te podrá ayudar...
Código:
Private Sub btnGeneraExcel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGeneraExcel.Click
Response.Clear()
Response.AddHeader("content-disposition", "attachment;filename=NombreArchivo.xls")
Response.Charset = ""
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.ContentType = "application/vnd.xls"
Dim stringWrite As System.IO.StringWriter = New System.IO.StringWriter
Dim htmlWrite As System.Web.UI.HtmlTextWriter = New HtmlTextWriter(stringWrite)
gridMov.RenderControl(htmlWrite)
Response.Write(stringWrite.ToString())
Response.End()
End Sub
__________________ "No nos atrevemos a muchas cosas porque son difíciles, pero son difíciles porque no nos atrevemos a hacerlas" :si:
Séneca |