/This code is used to download a file with open or save dialog box..
Response.Expires = -1;
// scarico un file
string strPath = Server.MapPath("filename");
FileInfo file = new FileInfo(strPath);
// verifica esistenza
if (file.Exists) {
// imposta le headers
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.ContentType = "application/octet-stream"; //this changes according to file type
// leggo dal file e scrivo nello stream di risposta
Response.WriteFile(strPath);
Response.End();
}
else
{
Response.Write("Impossibile scaricare il file.");
}
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Recently I encountered a case when I knew much more about the data than the optimizer. Originally the performance was horrible, this is why...
-
ASP.NET 4 adds built-in support for using routing with Web Forms. Routing lets you configure an application to accept request URLs that do...
-
Introduction Web Service is known as the software program. These services use the XML to exchange the information with the other software wi...
-
Most experienced developers will tell you that end users tend to "judge an application by its cover". In other words, they don...
-
Introduction Advanced Integration is for sellers who want more flexibility when creating payment buttons. Advanced Integration facilitates t...
No comments:
Post a Comment