Recherche…
Utiliser un httpHandler (.ashx) pour télécharger un fichier à partir d'un emplacement spécifique
Créez un nouveau httpHandler dans votre projet ASP.NET. Appliquez le code suivant (VB) au fichier du gestionnaire:
Public Class AttachmentDownload
Implements System.Web.IHttpHandler
Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
' pass an ID through the query string to append a unique identifer to your downloadable fileName
Dim fileUniqueId As Integer = CInt(context.Request.QueryString("id"))
' file path could also be something like "C:\FolderName\FilesForUserToDownload
Dim filePath As String = "\\ServerName\FolderName\FilesForUserToDownload"
Dim fileName As String = "UserWillDownloadThisFile_" & fileUniqueId
Dim fullFilePath = filePath & "\" & fileName
Dim byteArray() As Byte = File.ReadAllBytes(fullFilePath)
' promt the user to download the file
context.Response.Clear()
context.Response.ContentType = "application/x-please-download-me" ' "application/x-unknown"
context.Response.AppendHeader("Content-Disposition", "attachment; filename=" & fileName)
context.Response.BinaryWrite(byteArray)
context.Response.Flush()
context.Response.Close()
byteArray = Nothing
End Sub
ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
Get
Return False
End Get
End Property
End Class
Vous pouvez appeler le gestionnaire depuis le code derrière ou depuis une langue côté client. Dans cet exemple, j'utilise un javascript qui appellera le gestionnaire.
function openAttachmentDownloadHandler(fileId) {
// the location of your handler, and query strings to be passed to it
var url = "..\\_Handlers\\AttachmentDownload.ashx?";
url = url + "id=" + fileId;
// opening the handler will run its code, and it will close automatically
// when it is finished.
window.open(url);
}
Maintenant, associez la fonction javascript à un événement de clic sur un élément cliquable de votre formulaire Web. Par exemple:
<asp:LinkButton ID="lbtnDownloadFile" runat="server" OnClientClick="openAttachmentDownloadHandler(20);">Download A File</asp:LinkButton>
Ou vous pouvez aussi appeler la fonction javascript à partir du code:
ScriptManager.RegisterStartupScript(Page,
Page.GetType(),
"openAttachmentDownloadHandler",
"openAttachmentDownloadHandler(" & fileId & ");",
True)
Lorsque vous cliquez sur votre bouton, le httpHandler envoie votre fichier au navigateur et demande à l'utilisateur s'il souhaite le télécharger.
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow