jQuery插件ASP.NET应用之AjaxUpload

本次使用AJAXUPLOAD做为上传客户端无刷上传插件,其最新版本为3.9,官方地址:http://valums.com/ajax-upload/

在页面中引入 jquery.min.1.4.2.js 和 ajaxupload.js

Html代码  

  1. <script src="Scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
  2. <script src="Scripts/ajaxupload3.9.js" type="text/javascript"></script>

HTML 代码:

Html代码  

  1. <style type="text/css">
  2. #txtFileName {
  3. width: 300px;
  4. }
  5. .btnsubmit{border-bottom: #cc4f00 1px solid; border-left: #ff9000 1px solid;border-top: #ff9000 1px solid;   border-right: #cc4f00 1px solid;text-align: center; padding: 2px 10px; line-height: 16px; background: #e36b0f;  height: 24px; color: #fff; font-size: 12px; cursor: pointer;}
  6. </style>
  7. 上传图片:<input type="text" id="txtFileName" /><div  id="btnUp" style="width:300px;" class=btnsubmit >浏览</div>
  8. <div id="imglist"></div>

js代 码:

Js代码  

  1. <script type="text/javascript">
  2. $(function () {
  3. var button = $(‘#btnUp‘), interval;
  4. new AjaxUpload(button, {
  5. //action: ‘upload-test.php‘,文件上传服务器端执行的地址
  6. action: ‘/handler/AjaxuploadHandler.ashx‘,
  7. name: ‘myfile‘,
  8. onSubmit: function (file, ext) {
  9. if (!(ext && /^(jpg|jpeg|JPG|JPEG)$/.test(ext))) {
  10. alert(‘图片格式不正确,请选择 jpg 格式的文件!‘, ‘系统提示‘);
  11. return false;
  12. }
  13. // change button text, when user selects file
  14. button.text(‘上传中‘);
  15. // If you want to allow uploading only 1 file at time,
  16. // you can disable upload button
  17. this.disable();
  18. // Uploding -> Uploading. -> Uploading...
  19. interval = window.setInterval(function () {
  20. var text = button.text();
  21. if (text.length < 10) {
  22. button.text(text + ‘|‘);
  23. } else {
  24. button.text(‘上传中‘);
  25. }
  26. }, 200);
  27. },
  28. onComplete: function (file, response) {
  29. //file 本地文件名称,response 服务器端传回的信息
  30. button.text(‘上传图片(只允许上传JPG格式的图片,大小不得大于150K)‘);
  31. window.clearInterval(interval);
  32. // enable upload button
  33. this.enable();
  34. var k = response.replace("<PRE>", "").replace("</PRE>", "");
  35. if (k == ‘-1‘) {
  36. alert(‘您上传的文件太大啦!请不要超过150K‘);
  37. }
  38. else {
  39. alert("服务器端传回的串:"+k);
  40. alert("本地文件名称:"+file);
  41. $("#txtFileName").val(k);
  42. $("<img />").appendTo($(‘#imglist‘)).attr("src", k);
  43. }
  44. }
  45. });
  46. });
  47. </script>

服务器端 ajaxuploadhandler.ashx 代码

Js代码  

  1. public void ProcessRequest(HttpContext context)
  2. {
  3. context.Response.ContentType = "text/plain";
  4. HttpPostedFile postedFile = context.Request.Files[0];
  5. string savePath = "/upload/images/";
  6. int filelength = postedFile.ContentLength;
  7. int fileSize = 163600; //150K
  8. string fileName = "-1"; //返回的上传后的文件名
  9. if (filelength <= fileSize)
  10. {
  11. byte[] buffer = new byte[filelength];
  12. postedFile.InputStream.Read(buffer, 0, filelength);
  13. fileName = UploadImage(buffer, savePath, "jpg");
  14. }
  15. context.Response.Write(fileName);
  16. }
  17. public static string UploadImage(byte[] imgBuffer, string uploadpath, string ext)
  18. {
  19. try
  20. {
  21. System.IO.MemoryStream m = new MemoryStream(imgBuffer);
  22. if (!Directory.Exists(HttpContext.Current.Server.MapPath(uploadpath)))
  23. Directory.CreateDirectory(HttpContext.Current.Server.MapPath(uploadpath));
  24. string imgname = CreateIDCode() + "." + ext;
  25. string _path = HttpContext.Current.Server.MapPath(uploadpath) + imgname;
  26. Image img = Image.FromStream(m);
  27. if (ext == "jpg")
  28. img.Save(_path, System.Drawing.Imaging.ImageFormat.Jpeg);
  29. else
  30. img.Save(_path, System.Drawing.Imaging.ImageFormat.Gif);
  31. m.Close();
  32. return uploadpath + imgname;
  33. }
  34. catch (Exception ex)
  35. {
  36. return ex.Message;
  37. }
  38. }
  39. public static string CreateIDCode()
  40. {
  41. DateTime Time1 = DateTime.Now.ToUniversalTime();
  42. DateTime Time2 = Convert.ToDateTime("1970-01-01");
  43. TimeSpan span = Time1 - Time2;   //span就是两个日期之间的差额
  44. string t = span.TotalMilliseconds.ToString("0");
  45. return t;
  46. }
时间: 2024-11-26 15:48:16

jQuery插件ASP.NET应用之AjaxUpload的相关文章

ASP.NET中使用jQuery插件实现图片幻灯效果

参照网上的资料及提供的jQuery插件实现图片幻灯效果. 1.页面前台代码: //头部引用 <head runat="server"><title></title><script type="text/javascript" src="scripts/jquery/jquery-1.10.2.min.js"></script><script type="text/java

ASP.NET- 无刷新上传使用jQuery插件之ajaxFileUpload

灰常好,我已经使用过里面的代码了,可以用,原文地址:http://www.cnblogs.com/kissdodog/archive/2012/12/15/2819025.html 一.ajaxFileUpload是一个异步上传文件的jQuery插件. 传一个不知道什么版本的上来,以后不用到处找了. 语法:$.ajaxFileUpload([options]) options参数说明: 1.url  上传处理程序地址. 2,fileElementId  需要上传的文件域的ID,即<input t

241个jquery插件—jquery插件大全

jQuery由美国人John Resig创建,至今已吸引了来自世界各地的众多javascript高手加入其team. jQuery是继prototype之后又一个优秀的Javascrīpt框架.其经典的Slogan是“Write Less, Do more”(写更少的代码,做更多的事情).jQuery是轻量级的js库(压缩后只有21k) ,这是其它的js库所不及的,它兼容CSS3,还兼容各种浏览器 (IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+). jQue

如何开发jQuery插件

一:普及JQuery知识 知识1:用JQuery写插件时,最核心的方法有如下两个: $.extend(object) 可以理解为,为JQuery 类添加一个静态方法. $.fn.extend(object) 可以理解为,为JQuery实例添加一个成员函数. 基本的定义与调用: //$.extend的定义 $.extend({ pluginName:function(){ //... } }); //$.extend的调用 $.pluginName(); //$.fn.extend的定义 $.fn

经典海量jQuery插件

海量的jQuery插件帖,很经典,不知道什么时候开始流传,很早以前就收藏过,为了工作方便还是发了一份放在日志里面. 其中有些已经无法访问,或许是文件移除,或许是被封锁.大家分享的东西,没什么特别的可说的,唯有感谢无私分享的人们. 猫嗔提醒大家在使用的时候注意jQuery包的版本问题,最好是使用相同的版本,因为使用了高版本很有可能出现或多或少的问题.并且其中英文插件在转换成中文时注意编码,推荐utf-8. jQuery插件-文件上传(File upload)Ajax File Upload.jQU

jQuery 插件autocomplete

jQuery 插件autocomplete 应用 项目中有时会用到自动补全查询,就像Google搜索框.淘宝商品搜索功能,输入汉字或字母,则以该汉字或字母开头的相关条目会显示出来供用户选择, autocomplete插件就是完成这样的功能. autocomplete官网 : http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ (可下载jQuery autocomplete插件). 淘宝商品搜索功能 效果: 下面来使用

2014年七月最佳jQuery插件荟萃

本月的jQuery插件荟萃我们将介绍几款非常不错的jQuery插件,涵盖了表单,幻灯,页面设计等等方面,相信大家肯定会喜欢! Select or Die 一款帮助开发者美化并且强化选择框的jQuery插件 jPList 可 以非常灵活帮助开发人员生成可过滤,分页和排序的HTML结构.支持数据源:PHP+mysql,ASP.net +SQL,PHP+SQLite.可以和知名的javascript模板,例如,handlebars,Mustache等等配合工作.支持所有的主流浏 览器.非商业项目,个人

不定义JQuery插件 不要说会JQuery

二.普及JQuery知识 知识1:用JQuery写插件时,最核心的方法有如下两个: $.extend(object) 可以理解为JQuery 添加一个静态方法. $.fn.extend(object) 可以理解为JQuery实例添加一个方法. 基本的定义与调用: /* $.extend 定义与调用 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ $.extend({ fun1:

强烈推荐240多个jQuery插件提供下载

jQuery 是继 prototype 之后又一个优秀的 Javascript 框架.其宗旨是-写更少的代码,做更多的事情.它是轻量级的 js 库(压缩后只有21k) ,这是其它的 js 库所不及 的,它兼容 CSS3,还兼容各种浏览器(IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+). jQuery 是一个快速的,简洁的 javaScript 库,使用户能更方便地处理 HTML documents.events.实现动画效果,并且方便地为网站提供 AJAX