嗨,我正在创建一个显示错误的文件 txt 并提供链接,以便可以打开文件。
它可以在 Firefox 上工作,但不能在 ie 上工作
这里是屏幕截图
火狐
IE
If (Not System.IO.Directory.Exists("~\Errortext")) Then
System.IO.Directory.CreateDirectory("~\ErrorText")
End If
Dim lodt As New DataTable
da.Fill(lodt)
If lodt.Rows.Count > 0 Then
Dim filex As StreamWriter = File.CreateText("~\ErrorText\Error" & Session("UID") & ".txt")
Dim i As Integer
For i = 0 To lodt.Rows.Count - 1
filex.WriteLine(Left(lodt.Rows(i).Item("colErr"), Len(lodt.Rows(i).Item("colErr")) - 1))
Next
filex.Close()
lblMessage.Text = "Click on <a href=""../~/ErrorText/Error" & Session("UID") & ".txt"">THIS ONE</a> to proceed"
Else
lblMessage.Text = "berhasil"
End If