1

这让我非常困惑,因为代码在开发环境中工作并在本地部署到 IIS。但是,当部署到我们的测试服务器上时,纯文本下载的内容会被页面回发替换。要生成的代码;

Protected Sub _uiDownloadLBtn_Click(ByVal sender As Object, ByVal e As EventArgs) Handles _uiDownloadLBtn.Click
    Try
        'respond with the export details
        RespondWithFile(ExportFilePath)

    Catch ex As Exception
        'log the exception
        _logger.ErrorException("There was a problem trying to download the export file", ex)
        lblMessage.Text = "There was a problem trying to download the file"
    End Try
End Sub

Public Sub RespondWithFile(ByVal fileName As String)
    RespondWithFile(fileName, fileName)
End Sub

Public Sub RespondWithFile(ByVal fileName As String, ByVal downloadFileName As String)
    Try
        ' don't do anything if we have nothing to work with
        If String.IsNullOrEmpty(fileName) OrElse Not File.Exists(fileName) Then
            Return
        End If

        Dim fileDetails As New FileInfo(fileName)
        Dim response As HttpResponse = HttpContext.Current.Response
        response.Clear()
        response.AddHeader("Content-Disposition", "attachment; filename=" & Path.GetFileName(downloadFileName))
        ' strip out the path
        response.AddHeader("Content-Length", fileDetails.Length.ToString())
        response.ContentType = "text/plain"
        response.WriteFile(fileName)
        'response.End()
        HttpContext.Current.ApplicationInstance.CompleteRequest()

    Catch tex As ThreadAbortException
        ' log as warning and stop it from bubbling back up the call stack
        _logger.WarnException("ThreadAbortException thrown", tex)
        Thread.ResetAbort()
    End Try
End Sub

如您所见,我明确指定了 MIME 类型,text/plain并且我尝试同时调用response.End()HttpContext.Current.ApplicationInstance.CompleteRequest()

最初的行为是文件的内容被传输,然后是一个空行,然后是回发。在完全擦除部署的内容并将更新的代码复制到 IIS 服务器后,回发内容将替换下载内容。

逻辑上看的地方是 IIS 实例,但应用程序只使用最基本的设置。IIS 版本为 7,.NET 框架为 2.0。没有设置其他 IIS 配置。

想法?

4

1 回答 1

0

我找到了“一个”解决方案。通过将内容类型"application/pdf"和文件扩展名更改为,".csv"我能够强制将文件的内容交付与回发内容分开。这适用于跨浏览器,但在 FireFox 中确实有一个不幸的效果,它要求用户使用 Adob​​e Reader(“应用程序/pdf”内容的注册应用程序)打开文本文件。这对我们的客户来说无关紧要,但对其他人来说可能不是一个选择。

这确实将原因与 IIS 中的 MIME 配置紧密联系在一起,尽管我仍然对导致它的确切设置感到困惑。我曾尝试明确设置".txt"astext/plain".csv"as text/csv(有效但通常未注册的 MIME 类型),但均未成功。我想知道这里是否存在某种 MIME 类型的层次结构/偏好。

不过,至少有一个可行的解决方案。我希望这对其他人有帮助。

于 2013-07-18T09:44:16.633 回答