Uploadify使用随笔
最近项目使用了Uploadify一个上传插件,感觉的挺好用的。
上传控件:
引用JS
<script src='<% =ResolveUrl("~/JS/Uploadify/jquery.uploadify.js")%>' type="text/javascript"></script>
插件使用方法:
function UploadFY() {
var upload = {
'swf': '../JS/Uploadify/uploadify.swf',
'uploader': '../Ashx/FileOpHandler.ashx?Op=UploadFile&KGuid=' + Kguid + '&dType=SHPY_Files',
'buttonImg': '<% =ResolveUrl("~/JS/Uploadify/licon_001.gif")%>',
'cancelImg': '<% =ResolveUrl("~/JS/Uploadify/cancel.png")%>',
'queueID': Kguid,
'auto': true,
'multi': true,
'height': 22,
'width': 70,
'buttonText': '',
'fileTypeDesc': '系统支持文件', // The description for file types in the browse dialog
'fileTypeExts': '*.doc;*.docx;*.xls;*.xlsx;*.pdf;*.rar;*.gd',
//需要重写的事件
'overrideEvents': ['onSelectError', 'onDialogClose'],
'multi': false, //是否允许多选
'auto': true, //是否允许自动上传
'method': 'GET',
'queueSizeLimit': 300, //同时上传数量
'uploadLimit': 10000, //一次浏览器课上成总数量
'fileSizeLimit': '10MB', //单个文件大小设置
'sizeLimit': 4000000,
'onQueueComplete': function (file) { //所有文件上传完成时触发此事件
},
'onSelect': function (file) {
//$('#fileupload').uploadifySettings('formData', { 'ASPSESSID': ASPSESSID, 'AUTHID': auth });
//alert(formDate);
fileName = file.name;
},
//返回一个错误,选择文件的时候触发
'onSelectError': function (file, errorCode, errorMsg) {
switch (errorCode) {
case -100:
alert("上传的文件数量已经超出系统限制的" + $('#fileupload').uploadify('settings', 'queueSizeLimit') + "个文件!");
return;
case -110:
alert("文件 [" + file.name + "] 大小超出系统限制的10MB大小!");
// alert("文件 [" + file.name + "] 大小超出系统限制的" + $('#fileupload').uploadify('settings', 'fileSizeLimit') + "大小!");
return;
case -120:
alert("文件 [" + file.name + "] 大小超出系统限制的10MB大小!");
return;
case -130:
alert("文件 [" + file.name + "] 类型不正确!");
return;
default:
alert("文件 [" + file.name + "] 文件检查发生错误!");
return;
}
},
//检测FLASH失败调用
'onFallback': function () {
alert("您未安装FLASH控件,无法上传图片!请安装FLASH控件后再试。");
},
'width': 34, //文件选择按钮大小
'height': 22,
'removeCompleted': true,
'removeTimeout': 0.1, //上传完成后自动消失时间/秒
'onQueueComplete': function (file) { //所有文件上传完成时触发此事件
if (fileName.length > 100) {
alert("文件名过长!");
return;
}
$("#hdAttachmentName").val(fileName);
$("#hdAttachmentPath").val('/uploads/SHPY_Files' + '/' + Kguid + '/' + fileName);
$("#<%=DivFileLink.ClientID %>").html('<a href="javascript:void(0)" onclick="Down()" >' + fileName + '</a> <img src="../JS/Uploadify/cancel.png" align="middle" onclick=DeleteFile() />');
}
}
return upload;
}
function LoadUpload() {
$("input[type='file']").each(function () {
$(this).uploadify((UploadFY()))
});
}
function Down() {
document.getElementById('btnDown').click();
}
function DeleteFile() {
$("#hdAttachmentName").val('');
$("#hdAttachmentPath").val('');
$("#<%=DivFileLink.ClientID %>").html('');
//此处可写触发删除文件
}
页面加载的时候调用:
LoadUpload();
FileOpHandler.ashx
上传代码:
private void UploadFile(HttpContext context)
{
try
{
HttpPostedFile file = context.Request.Files["Filedata"];
string KGuid = q(context, "KGuid");
string FileName = file.FileName;
int FileLength = file.ContentLength; ;
string FileType = file.FileName.Substring(file.FileName.LastIndexOf("."));
string CreateUserName = q(context, "CreateUserName");
string CreateUserID = q(context, "CreateUserID");
DateTime CreateDateTime = DateTime.Now;
string uploadPath = context.Server.MapPath("..\\uploads\\" + q(context, "dType") + "\\" + KGuid + "\\");
string FilePath = "..\\uploads\\" + q(context, "dType") + "\\" + KGuid + "\\" + FileName;
if (file != null)
{
if (!Directory.Exists(uploadPath))
{
Directory.CreateDirectory(uploadPath);
}
file.SaveAs(uploadPath + file.FileName);
//生成缩略图
}
context.Response.Write("1");
}
catch
{
context.Response.Write("0");
}
}
private string q(HttpContext context, string str)
{
if (context.Request[str] != null)
return context.Request[str].ToString();
return "";
}
public bool success
{
get;
set;
}
/// <summary>
/// Gets or sets the MSG.
/// </summary>
/// <value>The MSG.</value>
public string msg
{
get;
set;
}
/// <summary>
/// Gets or sets the public key.
/// </summary>
/// <value>The public key.</value>
public object data
{
get;
set;
}
文件下载:
protected void btnDown_Click(object sender, EventArgs e)
{
string filePath = Server.MapPath("../" + hdAttachmentPath.Value);
try
{
FileInfo info = new FileInfo(filePath);
if (!info.Exists)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "message", "$.messager.alert('消息提示', '文件不存在!', 'info');", true);
return;
}
long fileSize = info.Length;
Response.Clear();
Response.ContentType = "application/x-zip-compressed";
Response.AddHeader("Content-Disposition", "attachment;filename=" +HttpUtility.UrlEncode( info.Name));
//不指明Content-Length用Flush的话不会显示下载进度
Response.AddHeader("Content-Length", fileSize.ToString());
Response.TransmitFile(filePath, 0, fileSize);
Response.Flush();
Response.Close();
}
catch (Exception ex)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "message", "$.messager.alert('消息提示', " + ex.Message + ", 'info');", true);
}
}
Uploadify使用随笔的更多相关文章
- 基于MVC4+EasyUI的Web开发框架形成之旅--附件上传组件uploadify的使用
大概一年前,我还在用Asp.NET开发一些行业管理系统的时候,就曾经使用这个组件作为文件的上传操作,在随笔<Web开发中的文件上传组件uploadify的使用>中可以看到,Asp.NET中 ...
- uploadify.js
基于uploadify.js实现多文件上传和上传进度条的显示 uploadify是JQuery的一个插件,主要实现文件的异步上传功能,可以自定义文件大小限制.文件类型.是否自动上传等属性,可以显示上传 ...
- 上传组件uploadify的使用
上传组件uploadify的使用 大概一年前,我还在用Asp.NET开发一些行业管理系统的时候,就曾经使用这个组件作为文件的上传操作,在随笔<Web开发中的文件上传组件uploadify的使用& ...
- 基于MVC4+EasyUI的Web开发框架形成之旅(4)--附件上传组件uploadify的使用
大概一年前,我还在用Asp.NET开发一些行业管理系统的时候,就曾经使用这个组件作为文件的上传操作,在随笔<Web开发中的文件上传组件uploadify的使用>中可以看到,Asp.NET中 ...
- asp.net(c#)开发中的文件上传组件uploadify的使用方法(带进度条)
上文件传很常见,现在就文件上传利用HTML的File控件(uploadify)的,这里为大家介绍一下(uploadify)的一些使用方法.在目前Web开发中用的比较多的,可能uploadify(参考h ...
- (转)基于MVC4+EasyUI的Web开发框架形成之旅--附件上传组件uploadify的使用
http://www.cnblogs.com/wuhuacong/p/3343967.html 大概一年前,我还在用Asp.NET开发一些行业管理系统的时候,就曾经使用这个组件作为文件的上传操作,在随 ...
- ASP.NET Uploadify 上传文件过大报错
Uploadify上传文件原来很早之前用过,没发现什么问题.今天再使用过程中,当文件大于30M的时候就会报错404.查看错误消息提示配置最大上传太小了.需要修改. 记得原来配置上传文件大小在这里:&l ...
- ASP.NET Uploadify 上传文件过大 报错(http error)借鉴,以防忘记
Uploadify上传文件原来很早之前用过,没发现什么问题.今天再使用过程中,当文件大于30M的时候就会报错404.查看错误消息提示配置最大上传太小了.需要修改. 记得原来配置上传文件大小在这里:&l ...
- jquery.uploadify文件上传组件
1.jquery.uploadify简介 在ASP.NET中上传的控件有很多,比如.NET自带的FileUpload,以及SWFUpload,Uploadify等等,尤其后面两个控件的用户体验比较好, ...
随机推荐
- 给ListBox每项加图标
先设置listBoxMsg.DrawMode = DrawMode.OwnerDrawFixed; private void listBoxMsg_DrawItem(object sender, Dr ...
- $.inArray()
原文链接:http://www.css88.com/jqapi-1.9/jQuery.inArray/ jQuery.inArray( value, array [, fromIndex ] )返回: ...
- Spring基于注解ehCache缓存整合
注解的使用参照:http://blog.csdn.net/wjacketcn/article/details/50945887 (侵删) ehCache是纯java实现的缓存组件,spring从3.1 ...
- 在重新生成解决方案时,出现的错误:无法将文件“obj\x86\Debug\*.exe”复制到“obj\Debug\*.exe”。文件正由另一进程使用,因此该进程无法访问此文件
此例是VS2010的CS项目. 在重新生成解决方案时,出现的错误. 解决步骤:先关闭解决方案,再在项目文件下的bin\Debug\*.exe删除这类之前生成得.exe文件,再在VS2010下重新生成.
- 打开hibernate文件报警告
在web工程中新建一个,Hibetnate项目,打开配置文件报警高错误,This project is not a MyEclipse Hiberbate Project. Assuming Hibe ...
- python3 密码生成器
用random模块实现按照要求生成一定个数和一定位数的密码: #Author by Andy #_*_ coding:utf-8 _*_ import random checkcode='' code ...
- haligong2016
A 采用递推的方法,由于要到达棋盘上的一个点,只能从左边或者上边过来,根据加法原则,到达某一点的路径数目,就等于到达其相邻的上点和左点的路径数目的总和.所有海盗能达到的点将其路径数置为0即可. #in ...
- psql
1.sudo passwd postgres 2.sudo -u postgres createuser -P django_login 3.su postgres 4.psql 5.CREATE D ...
- SPSS中两种重复测量资料分析过程的比较
在SPSS中,有两个过程可以对重复测量资料进行分析:一种是一般线性模型的重复度量:一种是混合线性模型,对于同样的数据资料,使用两种过程分析出的内容不大一样,注意是内容而不是结果,只要操作正确,结果应该 ...
- HDOJ Problem - 1299
题意:等式 1 / x + 1 / y = 1 / n (x, y, n ∈ N+ (1) 且 x <= y) ,给出 n,求有多少满足该式子的解.(1 <= n <= 1e9) 题 ...