1,点右键“图片另存为”
2,打包成zip文件
3,document.execCommand("Saveas")

解决方案 »

  1.   

    看来你的分真不好得,asp是服务端运行的,可以在服务端进行文件拷贝。如:
    <%
    dim fso,f,fpath,f1,fc,fb
    fpath=server.mappath("images")
    Set fso=server.createobject("scripting.filesystemobject")
    Set f = fso.GetFolder(fpath)
    Set fc=f.files
    for each f1 in fc
    response.write "<br><img src="&fpath&"\"&f1.name&"><br>"
    fso.CopyFile fpath&"\"&f1.name,fp&"\"
    next
    %>
    我无能为力
      

  2.   

    服务器端的我知道可以用FileSystemObject实现,就是不知道怎么实现客户端的。这是我作的程序中的一个功能,实在是不知道怎么办。看起来是难了些。