我正在尝试从数据库中创建一个 html 文件,但在转义这一行时遇到问题"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />"
完整代码:
Dim filer As Integer, paths As String
filer = FreeFile
paths = App.Path + "\DB"
Open paths + "\test.html" For Output As #filer
'...
Print #filer, "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />"
'...
Close #filer
我不知道为什么它会显示为红色并且不要让我创建.exe
它甚至运行它