Ciao a Tutti,
sono disperata!!

dopo il download di un file (segue codice):

Dim path As String = Server.MapPath("test.txt")
Dim file As System.IO.FileInfo = New System.IO.FileInfo(path)

Response.Clear()
Response.AddHeader("Content-Disposition", "attachment; filename=" & file.Name)
Response.AddHeader("Content-Length", file.Length.ToString())
Response.ContentType = "application/octet-stream"
Response.WriteFile(file.FullName)
Response.Flush()
Response.End()
necessito che sia eseguita una redirect ad una pagine
Response.Redirect("http://www.xyz.it", True)

purtroppo le ho provate tutte ma niente..

Mi aiutate per favore!!

GRAZIE!!