1
我需要在新的asp.net頁面或彈出頁面中呈現xml文檔。在瀏覽器vb.net中顯示Xml文檔
我下面的article
我收到以下錯誤"Thread was being aborted."
但XML文檔中的頁面呈現。
有沒有更好的例子
Try
If Not String.IsNullOrEmpty(tempFilePath) Then
Response.Clear()
Response.Buffer = True
Response.Charset = ""
Response.Cache.SetCacheability(HttpCacheability.NoCache)
Response.ContentType = "application/xml"
'Response.WriteFile(Server.MapPath(tempFilePath)) ' Todo Change path to temp location and add th
Response.WriteFile("c:\Test.xml")
Response.Flush()
Response.[End]()
End If
Catch ex As Exception
'TODO
Throw ex
End Try
請指定你得到該異常的行(請注意'Response.End'顯式拋出異常作爲中止當前線程的結果 - http://stackoverflow.com/questions/1087777/is-response-end-認爲有害) –
謝謝你的工作,我用response.close替換了response.end。你可以添加一個答案。如果我需要在具有母版頁的頁面中呈現響應,我將如何執行此操作。 – user1339913