S
Sam --
Hi all
I've a problem
I write code for download a file.
Sometimes when I run the code, the window of "File Download" appears
I push the "open" button and the window of "File Download" appears
again
This happens in this situation
windows 2003 - IE version 6.0.3790.0
note:
If i comment the line
********
Response.AppendHeader("content-disposition", "attachment;
filename=prova.xls")
*******
the problem does not happen but I cannot specify the name of the file
thanks
Sam --
'.......................................................................
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
With Response
.Clear()
.ClearContent()
.ClearHeaders()
End With
Response.ContentType = "application/vnd.ms-excel"
Response.AppendHeader("content-disposition", "attachment;
filename=prova.xls")
Response.Write("test")
Response.End()
Response.Flush()
End Sub
I've a problem
I write code for download a file.
Sometimes when I run the code, the window of "File Download" appears
I push the "open" button and the window of "File Download" appears
again
This happens in this situation
windows 2003 - IE version 6.0.3790.0
note:
If i comment the line
********
Response.AppendHeader("content-disposition", "attachment;
filename=prova.xls")
*******
the problem does not happen but I cannot specify the name of the file
thanks
Sam --
'.......................................................................
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
With Response
.Clear()
.ClearContent()
.ClearHeaders()
End With
Response.ContentType = "application/vnd.ms-excel"
Response.AppendHeader("content-disposition", "attachment;
filename=prova.xls")
Response.Write("test")
Response.End()
Response.Flush()
End Sub