小弟用VB写了有一个DLL 在ASP中调用。在DLL中写了一个函数。 修改一文本文件。结果发现读取一切正常。修改的时候就报 路径/文件访问错误 的错误.函数代码如下:Public Function Test() As String
        
    Open App.Path & "\aa.txt" For Output As #1
    
        Print #1, "123"
    
    Close #1End Function
请各位高手指点一下