zoukankan      html  css  js  c++  java
  • jquery上传控件uploadify使用备忘

    我简单修改了js和样式,效果如下

    使用起来也是超简单,将文件下载并解压到你网站目录下,然后

    1、在使用位置插入代码
    =============================
     <iframe width="450px" src="/uploadify/upload.html?参数" frameborder="no" border="0" marginwidth="0"
            marginheight="0" scrolling="no" allowtransparency="yes"></iframe>
    =============================
    2、设置参数
       uploader:接收上传文件的页面地址,经过Url编码,必须参数
       fileTypeExts :文件类型,默认【*.*】
       fileTypeDesc :文件类型描述,默认【所有文件】
       multi :是否多选,默认【true3、接收文件(可参考upload.ashx)
           public void ProcessRequest(HttpContext context)
            {
                context.Response.ContentType = "text/plain";
                context.Response.Charset = "utf-8";
                HttpPostedFile file = context.Request.Files["Filedata"];   
                if (file != null)
                {                
                    file.SaveAs(uploadPath + file.FileName);
                    ......
                }
            }
    4、文件大小
       默认上传最大文件为100M,当然这需要您web.config已经设置好的

    使用如下:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
       
    </head>
    <body>
        <iframe width="450px" src="/uploadify/upload.html?参数" frameborder="no" border="0" marginwidth="0"
            marginheight="0" scrolling="no" allowtransparency="yes"></iframe>
    </body>
    </html>

    更多的参数描述请看官网  http://www.uploadify.com/

    下载链接: http://pan.baidu.com/s/1jI8nBDW 密码: 4f4i

  • 相关阅读:
    可视化数据挖掘开源软件的比较分析
    大数据平台比较-CDH,HDP
    数据挖掘的一般过程
    httpclient介绍与请求方式详解
    30分钟带你了解阻塞队列所有内容,再也不怕面试官刁难你了!(上)
    Lock
    HashMap 源码解读
    类加载各阶段详解
    Java基础复习(八、注解)
    Java基础复习(六、反射)
  • 原文地址:https://www.cnblogs.com/bfyx/p/5740959.html
Copyright © 2011-2022 走看看