欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net uploadify实现多附件上传功能

程序员文章站 2022-07-22 13:14:47
本文实例为大家分享了asp.net uploadify多附件上传的方法,供大家参考,具体内容如下 1、说明   uploadify是一款优秀jquery插件,主要功能是...

本文实例为大家分享了asp.net uploadify多附件上传的方法,供大家参考,具体内容如下

1、说明

  uploadify是一款优秀jquery插件,主要功能是批量上传文件。大多数同学对多附件上传感到棘手,现将asp.net结合uploadfiy如何实现批量上传附件给大家讲解一下,有什么不对的地方还请大家多多交流沟通,下面把代码贴出来大家一起交流。

2、组成

首先说明一下代码实现所用到的技术,仅供参考:

    开发工具:vs2010

    目标框架:.net framework3.5

    uploadify:uploadify-v3.1

    jquery:jquery-1.8.1.js

最后我会将整个demo上传,如果同学们的电脑上有开发环境可直接打开项目解决方案运行。

3、代码

default.aspx(测试页面)

<%@ page language="c#" autoeventwireup="true" codebehind="default.aspx.cs" inherits="fileupload._default" %>
 
<!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 runat="server">
 <title>附件上传</title>
 <script src="scripts/jquery-1.8.1.js" type="text/javascript"></script>
 <script src="scripts/uploadify-v3.1/jquery.uploadify-3.1.js" type="text/javascript"></script>
 <link href="scripts/uploadify-v3.1/uploadify.css" rel="stylesheet" type="text/css" />
 <script type="text/javascript">
 $(function () {
  $("#file_upload").uploadify({
  "auto": false,
  "swf": "scripts/uploadify-v3.1/uploadify.swf",
  "uploader": "app_handler/uploadify.ashx?action=upload",
  "removecompleted": false,
  "onuploadsuccess": function (file, data, response) {
   alert('文件 ' + file.name + ' 已经上传成功,并返回 ' + response + ' 服务器状态 ' + data);
  }
  });
 });
 </script>
</head>
<body>
 <form id="form1" runat="server">
 <div>
 <input type="file" id="file_upload" name="file_upload" />
 </div>
 <div>
 <a href="javascript:$('#file_upload').uploadify('upload');">上传第一个</a>
 <a href="javascript:$('#file_upload').uploadify('upload','*');">上传队列</a>
 <a href="javascript:$('#file_upload').uploadify('cancel');">取消第一个</a>
 <a href="javascript:$('#file_upload').uploadify('cancel', '*');">取消队列</a>
 </div>
 </form>
</body>
</html>

asp.net uploadify实现多附件上传功能

uploadify.ashx(一般处理程序)

<%@ webhandler language="c#" class="uploadifyupload" %>
 
using system;
using system.collections;
using system.data;
using system.web;
using system.web.services;
using system.web.services.protocols;
using system.web.sessionstate;
using system.io;
using system.collections.generic;
using system.web.ui.webcontrols;
using system.text;
 
public class uploadifyupload : ihttphandler, irequiressessionstate
{
 
 public void processrequest(httpcontext context)
 {
 context.response.contenttype = "text/plain";
 context.response.charset = "utf-8";
 
 string action = context.request["action"];
 switch (action)
 {
  case "upload":
  //上传附件
  upload(context);
  break;
 }
 context.response.end();
 }
 
 /// <summary>
 /// 上传附件
 /// </summary>
 /// <param name="context"></param>
 private void upload(httpcontext context)
 {
 httppostedfile postedfile = context.request.files["filedata"];
 if (postedfile != null)
 {
  string filename, fileextension;
  int filesize;
  filename = postedfile.filename;
  filesize = postedfile.contentlength;
  if (filename != "")
  {
 
  fileextension = postedfile.filename.substring(postedfile.filename.lastindexof('.'));
  string path =context.server.mappath("/")+ "\\app_attachments\\";//设置文件的路径
  string fileurl = path + datetime.now.tostring("yyyymmddhhmmss") + fileextension;//保存文件路径
  if (!directory.exists(path)) {
   directory.createdirectory(path);
  }
  postedfile.saveas(fileurl);//先保存源文件
 
 
  context.response.write("上传成功!");
 
  }
  else
  {
  context.response.write("上传失败!");
  }
 }
 else
 {
  context.response.write("上传失败!");
 }
 }
 
 public bool isreusable
 {
 get
 {
  return false;
 }
 }
 
}
  

4、补充

  给大家贴出一些uploadfiy参数的讲解,使用方法就是在default.aspx测试页面里面$("#file_upload").uploadify({});方法中配置,不论参数或事件配置要以英文状态下的逗号结束,最后一个不需要逗号结束。类似于下图

asp.net uploadify实现多附件上传功能

 详细参数如下:

// 所需的参数
id: $this.attr('id'), // dom对象的id
 
swf: 'scripts/jquery-uploadify/uploadify.swf', // uploadify.swf 文件的路径
 
uploader: 'app_handler/uploadify.ashx', // 后台处理程序的相对路径
 
auto: false, // 设置为true当选择文件后就直接上传了,为false需要点击上传按钮才上传,这里执行doupload()方法
 
buttonclass: '', // 按钮样式
 
buttoncursor: 'hand', // 鼠标指针悬停在按钮上的样子
 
buttonimage: null, // 浏览按钮的图片的路径
 
buttontext: '选择文件', // 浏览按钮的文本
 
checkexisting: false, // 文件上传重复性检查程序,检查即将上传的文件在服务器端是否已存在,存在返回1,不存在返回0
 
debug: false, // 如果设置为true则表示启用swfupload的调试模式
 
fileobjname: 'filedata', // 文件上传对象的名称,如果命名为'the_files',php程序可以用$_files['the_files']来处理上传的文件对象
 
filesizelimit: '5mb', // 上传文件的大小限制 ,如果为整数型则表示以kb为单位的大小,如果是字符串,则可以使用(b, kb, mb, or gb)为单位,比如'2mb';如果设置为0则表示无限制
 
filetypedesc: '支持的格式:', // 这个属性值必须设置filetypeexts属性后才有效,用来设置选择文件对话框中的提示文本,如设置filetypedesc为“请选择rar doc pdf文件”
 
filetypeexts: '*.*', // 设置可以选择的文件的类型,格式如:'*.doc;*.pdf;*.rar'
 
height: 24, // 设置浏览按钮的高度 ,默认值
 
itemtemplate: false, // 用于设置上传队列的html模版,可以使用以下标签:instanceid – uploadify实例的id fileid – 列队中此文件的id,或者理解为此任务的id filename – 文件的名称 filesize – 当前上传文件的大小 插入模版标签时使用格式如:${filename}
 
method: 'post', // 提交方式post或get
 
multi: true, // 设置为true时可以上传多个文件
 
formdata: { 'action': 'upload' }, // anjson格式上传每个文件的同时提交到服务器的额外数据,可在'onuploadstart'事件中使用'settings'方法动态设置
 
preventcaching: true, // 如果为true,则每次上传文件时自动加上一串随机字符串参数,防止url缓存影响上传结果
 
progressdata: 'percentage', // 设置上传进度显示方式,percentage显示上传百分比,speed显示上传速度
 
listid: false, // 设置附件列表容器dom元素的id
 
queueid: false, // 设置上传队列容器dom元素的id,如果为false则自动生成一个队列容器
 
queuesizelimit: 999, // 队列最多显示的任务数量,如果选择的文件数量超出此限制,将会出发onselecterror事件。注意此项并非最大文件上传数量,如果要限制最大上传文件数量,应设置uploadlimit
 
removecompleted: false, // 是否自动将已完成任务从队列中删除,如果设置为ture则会从队列中移除
 
removetimeout: 3, // 如果设置了任务完成后自动从队列中移除,则可以规定从完成到被移除的时间间隔
 
requeueerrors: false, // 如果设置为true,则单个任务上传失败后将返回错误,并重新加入任务队列上传
 
successtimeout: 30, // 文件上传成功后服务端应返回成功标志,此项设置返回结果的超时时间
 
uploadlimit: 0, // 最大上传文件数量,如果达到或超出此限制将会触发onuploaderror事件
 
width: 75, // 设置文件浏览按钮的宽度

 设置的事件: 

ondialogclose : function(swfuploadifyqueue) {//当文件选择对话框关闭时触发
  if( swfuploadifyqueue.fileserrored > 0 ){
  alert( '添加至队列时有'
  +swfuploadifyqueue.fileserrored
  +'个文件发生错误n'
  +'错误信息:'
  +swfuploadifyqueue.errormsg
  +'n选定的文件数:'
  +swfuploadifyqueue.filesselected
  +'n成功添加至队列的文件数:'
  +swfuploadifyqueue.filesqueued
  +'n队列中的总文件数量:'
  +swfuploadifyqueue.queuelength);
  }
}
 
ondialogopen : function() {//当选择文件对话框打开时触发
  alert( 'open!');
}
 
 
 
onselect : function(file) {//当每个文件添加至队列后触发
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus);
}
 
 
 
onselecterror : function(file,errorcode,errormsg) {//当文件选定发生错误时触发
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 错误代码: ' + errorcode
  + ' - 错误信息: ' + errormsg);
}
 
 
 
onqueuecomplete : function(stats) {//当队列中的所有文件全部完成上传时触发
  alert( '成功上传的文件数: ' + stats.successful_uploads
  + ' - 上传出错的文件数: ' + stats.upload_errors
  + ' - 取消上传的文件数: ' + stats.upload_cancelled
  + ' - 出错的文件数' + stats.queue_errors);
}
 
 
 
onuploadcomplete : function(file,swfuploadifyqueue) {//队列中的每个文件上传完成时触发一次
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 出错的文件数: ' + swfuploadifyqueue.fileserrored
  + ' - 错误信息: ' + swfuploadifyqueue.errormsg
  + ' - 要添加至队列的数量: ' + swfuploadifyqueue.filesselected
  + ' - 添加至对立的数量: ' + swfuploadifyqueue.filesqueued
  + ' - 队列长度: ' + swfuploadifyqueue.queuelength);
}
 
 
 
onuploaderror : function(file,errorcode,errormsg,errorstring,swfuploadifyqueue) {//上传文件出错是触发(每个出错文件触发一次)
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 错误代码: ' + errorcode
  + ' - 错误描述: ' + errormsg
  + ' - 简要错误描述: ' + errorstring
  + ' - 出错的文件数: ' + swfuploadifyqueue.fileserrored
  + ' - 错误信息: ' + swfuploadifyqueue.errormsg
  + ' - 要添加至队列的数量: ' + swfuploadifyqueue.filesselected
  + ' - 添加至对立的数量: ' + swfuploadifyqueue.filesqueued
  + ' - 队列长度: ' + swfuploadifyqueue.queuelength);
}
 
 
 
onuploadprogress : function(file,filebytesloaded,filetotalbytes,
queuebytesloaded,swfuploadifyqueueuploadsize) {//上传进度发生变更时触发
alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 当前文件已上传: ' + filebytesloaded
  + ' - 当前文件大小: ' + filetotalbytes
  + ' - 队列已上传: ' + queuebytesloaded
  + ' - 队列大小: ' + swfuploadifyqueueuploadsize);
}
 
 
 
onuploadstart: function(file) {//上传开始时触发(每个文件触发一次)
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus );
}
 
onuploadsuccess : function(file,data,response) {//上传完成时触发(每个文件触发一次)
  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 服务器端消息: ' + data
  + ' - 是否上传成功: ' + response);
 
}

5、最后奉上demo:fileupload

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。