1

我正在尝试在 Global.asax 文件中使用 vb.net 写入文件请有人给我示例如何在 Global.asax 中写入那种文件

谢谢。

4

1 回答 1

1

您可以将其添加到您的 Global.asax 文件中:

 Protected Sub Session_Start(sender As Object, e As EventArgs)
     Dim mydocpath As String = "c:\\path\\to\folder";

     Using outfile As New StreamWriter(mydocpath & "\MyTextFile.txt")
         outfile.Write("Some message")
     End Using 
 End Sub

你可能想看看像NLog这样的日志包,它们比这个例子更健壮。

于 2013-09-12T22:44:27.093 回答