UploadClass上传文件-无效的过程调用或参数: InStr 2010-05-24 15:10 错误: Microsoft VBScript 运行时错误 错误 '800a0005' 无效的过程调用或参数: 'InStr' /manage/inc/uploadClass.asp,行 150 出错的原因: 是IE8/IE7/Firefox3中,上传文件时不再包含文件在本地的完整路径,而只有文件名。这使得原有的文件名提取机制出错。上面的错误,就是因为Instr函数中的参数出错了。 解决方法: if Instr(intTemp,strTemp,".")<>0 then 只要改成这样就行了。 if Instr(intTemp,strTemp)<>0 then