以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 上传文件 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=157710) |
-- 作者:lshshlxsh -- 发布时间:2020/10/26 15:57:00 -- 上传文件 请问老师 在上传图片前 怎么判断是否有图片才能上传? Select
Case e.Path |
-- 作者:有点蓝 -- 发布时间:2020/10/26 16:06:00 -- Case "receive.htm" if e.Files.Keys.count > 0 then For Each key As String In e.Files.Keys For Each fln As String In e.Files(key) e.SaveFile(key,fln,"d:\\web\\uploadfiles\\" & fln) \'保存接收到的文件 Next Next e.WriteString("OK") else e.WriteString("请添加文件!") end if End Select js function afterSubmit(result){ hide("tst1"); if (result==\'OK\') { show("tst2"); location="upload.htm"; } else{ alert(result); show("tst3",2000);
} } |