Hi,
when I run the next code lines in a procedure that must open a text file the Eo.Web control sends me an error message.
Code: Visual Basic.NET
Response.Buffer = True
Response.ContentType = "application/octet-stream"
Response.AddHeader("Content-Disposition", "attachment; filename=""" & sNombreArchivo & """")
Response.ContentEncoding = Encoding.Default
Response.TransmitFile(sPath.Replace("$$", "\"))
Response.Flush()
Response.Close()
the line where the error ocurred is Response.Close() and the callbackpanel dont get back.
Any idea ?
Thanks.