博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Uploadify jquery+flash+UploadHandler.ashx
阅读量:5141 次
发布时间:2019-06-13

本文共 2853 字,大约阅读时间需要 9 分钟。

官方网: 只有PHP版本

对于我们.net的来说是一个遗憾!现在奉献一个c#版本,希望对大家有用。

看代码其实很简单,在做这个之前遇到许多问题,特别是在IHttpHandler 里面,只有经历过了才会体会到,还是给解决了!

直接运行html出现下面错误  要在vs运行下才没有下面错误

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<
html
xmlns
=
""
>
<
head
>
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=utf-8"
/>
<
title
>Uploadify</
title
>
<
link
href
=
"css/default.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
link
href
=
"css/uploadify.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
script
type
=
"text/javascript"
src
=
"scripts/jquery-1.3.2.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"scripts/swfobject.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"scripts/jquery.uploadify.v2.1.0.min.js"
></
script
>
<
script
type
=
"text/javascript"
>
$(document).ready(function() {
 
$("#uploadify").uploadify({
  
'uploader'       : 'scripts/uploadify.swf',
  
'script'         : 'scripts/UploadHandler.ashx',
  
'cancelImg'      : 'scripts/cancel.png',
  
'folder'         : 'uploads',
  
'queueID'        : 'fileQueue',
  
'sizeLimit'      : '5242880',//5M
  
'auto'           : false,
  
'multi'          : true ,
  
'onError'        : function (a, b, c, d) 
  
{
  
if (d.status == 404)
  
alert('Could not find upload script. Use a path relative to: '+'<?= getcwd() ?>');
  
else if (d.type === "HTTP")
  
alert('error '+d.type+": "+d.status);
  
else if (d.type ==="File Size")
  
alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLimit/1024)+'KB');
  
else
  
alert('error '+d.type+": "+d.info);
  
}
 
});
});
</
script
>
</
head
>
  
<
body
>
<
div
id
=
"fileQueue"
></
div
>
<
input
type
=
"file"
name
=
"uploadify"
id
=
"uploadify"
/>
<
p
>
<
a
href
=
"javascript:$('#uploadify').uploadifyUpload()"
>Upload</
a
>|
  
<
a
href
=
"javascript:$('#uploadify').uploadifyClearQueue()"
>Cancel All Uploads</
a
>
</
p
>
</
body
>
</
html
>

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<%@ WebHandler Language=
"C#"
Class=
"UploadHandler"
%>
using
System;
using
System.IO; 
using
System.Net;
using
System.Web; 
  
public
class
UploadHandler : IHttpHandler
{
    
public
void
ProcessRequest(HttpContext  context) 
    
{
        
context.Response.ContentType =
"text/plain"
        
context.Response.Charset =
"utf-8"
        
HttpPostedFile oFile = context.Request.Files[
"Filedata"
]; 
        
string 
strUploadPath = HttpContext.Current.Server.MapPath(@context.Request[
"folder"
])+
"\\"
;
        
if
(oFile !=
null
)
        
{
            
if
(!Directory.Exists(strUploadPath))
            
{
                
Directory.CreateDirectory(strUploadPath);
            
            
oFile.SaveAs(strUploadPath + oFile.FileName);
            
context.Response.Write(
"1"
);
              
        
        
else 
        
            
context.Response.Write(
"0"
); 
        
}
    
}
    
public
bool
IsReusable
    
        
get 
{
return
false
; }
    
}

2011-3-18

其他版本:blueimp-jQuery-File-Upload  c#   在54楼 下载  不同上面那个!!

 

点击Flash按钮无法打开链接的解决方案:

转载于:https://www.cnblogs.com/rhinemetal/archive/2012/06/29/2569540.html

你可能感兴趣的文章
分析Ajax请求并抓取今日头条街拍美图图集(进程池、MongoDB、二进制流文件、正则、requests)...
查看>>
python 小知识
查看>>
Viewport元信息 放在html的head里
查看>>
apache和tomcat的区别
查看>>
测试用例-因果图
查看>>
Java第一次作业——Java语言基础
查看>>
生产者消费者C++实现
查看>>
js API
查看>>
iOS Core Animation Advanced Techniques(二):视觉效果和变换
查看>>
设计模式之适配器模式(Adapter)
查看>>
272. Closest Binary Search Tree Value II
查看>>
011 条件判断
查看>>
基于single sidebox的广告显示模块
查看>>
Java中的ASCII、Unicode和UTF-8字符编码集
查看>>
Java动手动脑2
查看>>
浏览器端JS导出EXCEL——001
查看>>
B树和B+树的插入、删除图文详解
查看>>
刷新所有视图存储过程
查看>>
捕捉错误日志 向服务器上传错误日志
查看>>
Java经典设计模式之五大创建型模式
查看>>