asp保存文件名和保存文件相对路径的语句怎么写asp保存文件名和保存文件相对路径的语句怎么写[解决办法]set fso=server.CreateObject( "scripting.filesystemobject ") set file=fso.createtextfile(server.MapPath( "/aa.txt "),1) '相对路径 file.write "字符串 " set file=nothing set fso=nothing 是这样吗?