[求助]关于ASP.NET文件创建的问题
filename = "员工信息(" & myfunc1.get_longtime & ").TXT"mydbfile_path = Server.MapPath(filename)
If Not File.Exists(mydbfile_path) Then
'File.CreateText(mydbfile_path)
myfso_w = File.AppendText(mydbfile_path)
Else
File.Delete(mydbfile_path)
myfso_w = File.AppendText(mydbfile_path)
End If
运行时提示:
MapPath“/员工信息(2006-02-16 18:15:33).TXT”的路径无效。应为虚拟路径。
错在哪里,请指教,谢谢!