jQuery插件ASP.NET应用之AjaxUpload
本次使用AJAXUPLOAD做为上传客户端无刷上传插件,其最新版本为3.9,官方地址:http://valums.com/ajax-upload/
在页面中引入 jquery.min.1.4.2.js 和 ajaxupload.js
- <script src="Scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
- <script src="Scripts/ajaxupload3.9.js" type="text/javascript"></script>
HTML 代码:
- <style type="text/css">
- #txtFileName {
- width: 300px;
- }
- .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;}
- </style>
- 上传图片:<input type="text" id="txtFileName" /><div id="btnUp" style="width:300px;" class=btnsubmit >浏览</div>
- <div id="imglist"></div>
js代 码:
- <script type="text/javascript">
- $(function () {
- var button = $('#btnUp'), interval;
- new AjaxUpload(button, {
- //action: 'upload-test.php',文件上传服务器端执行的地址
- action: '/handler/AjaxuploadHandler.ashx',
- name: 'myfile',
- onSubmit: function (file, ext) {
- if (!(ext && /^(jpg|jpeg|JPG|JPEG)$/.test(ext))) {
- alert('图片格式不正确,请选择 jpg 格式的文件!', '系统提示');
- return false;
- }
- // change button text, when user selects file
- button.text('上传中');
- // If you want to allow uploading only 1 file at time,
- // you can disable upload button
- this.disable();
- // Uploding -> Uploading. -> Uploading...
- interval = window.setInterval(function () {
- var text = button.text();
- if (text.length < 10) {
- button.text(text + '|');
- } else {
- button.text('上传中');
- }
- }, 200);
- },
- onComplete: function (file, response) {
- //file 本地文件名称,response 服务器端传回的信息
- button.text('上传图片(只允许上传JPG格式的图片,大小不得大于150K)');
- window.clearInterval(interval);
- // enable upload button
- this.enable();
- var k = response.replace("<PRE>", "").replace("</PRE>", "");
- if (k == '-1') {
- alert('您上传的文件太大啦!请不要超过150K');
- }
- else {
- alert("服务器端传回的串:"+k);
- alert("本地文件名称:"+file);
- $("#txtFileName").val(k);
- $("<img />").appendTo($('#imglist')).attr("src", k);
- }
- }
- });
- });
- </script>
服务器端 ajaxuploadhandler.ashx 代码
- public void ProcessRequest(HttpContext context)
- {
- context.Response.ContentType = "text/plain";
- HttpPostedFile postedFile = context.Request.Files[0];
- string savePath = "/upload/images/";
- int filelength = postedFile.ContentLength;
- int fileSize = 163600; //150K
- string fileName = "-1"; //返回的上传后的文件名
- if (filelength <= fileSize)
- {
- byte[] buffer = new byte[filelength];
- postedFile.InputStream.Read(buffer, 0, filelength);
- fileName = UploadImage(buffer, savePath, "jpg");
- }
- context.Response.Write(fileName);
- }
- public static string UploadImage(byte[] imgBuffer, string uploadpath, string ext)
- {
- try
- {
- System.IO.MemoryStream m = new MemoryStream(imgBuffer);
- if (!Directory.Exists(HttpContext.Current.Server.MapPath(uploadpath)))
- Directory.CreateDirectory(HttpContext.Current.Server.MapPath(uploadpath));
- string imgname = CreateIDCode() + "." + ext;
- string _path = HttpContext.Current.Server.MapPath(uploadpath) + imgname;
- Image img = Image.FromStream(m);
- if (ext == "jpg")
- img.Save(_path, System.Drawing.Imaging.ImageFormat.Jpeg);
- else
- img.Save(_path, System.Drawing.Imaging.ImageFormat.Gif);
- m.Close();
- return uploadpath + imgname;
- }
- catch (Exception ex)
- {
- return ex.Message;
- }
- }
- public static string CreateIDCode()
- {
- DateTime Time1 = DateTime.Now.ToUniversalTime();
- DateTime Time2 = Convert.ToDateTime("1970-01-01");
- TimeSpan span = Time1 - Time2; //span就是两个日期之间的差额
- string t = span.TotalMilliseconds.ToString("0");
- return t;
- }
jQuery插件ASP.NET应用之AjaxUpload的更多相关文章
- ASP.NET中使用jQuery插件实现图片幻灯效果
参照网上的资料及提供的jQuery插件实现图片幻灯效果. 1.页面前台代码: //头部引用 <head runat="server"><title>< ...
- ASP.NET- 无刷新上传使用jQuery插件之ajaxFileUpload
灰常好,我已经使用过里面的代码了,可以用,原文地址:http://www.cnblogs.com/kissdodog/archive/2012/12/15/2819025.html 一.ajaxFil ...
- JQuery插件定义
一:导言 有些WEB开发者,会引用一个JQuery类库,然后在网页上写一写$("#"),$("."),写了几年就对别人说非常熟悉JQuery.我曾经也是这样的人 ...
- jQuery插件入门
一:导言 有些WEB开发者,会引用一个JQuery类库,然后在网页上写一写("#"),("#"),("."),写了几年就对别人说非常熟悉JQ ...
- jPList – 实现灵活排序和分页功能的 jQuery 插件
jPList 是一个灵活的 jQuery 插件,可以用于任何 HTML 结构的排序,分页和筛选.它支持的数据源包括:PHP + MySQL,ASP.NET + SQL Server,PHP + SQL ...
- 不定义JQuery插件,不要说会JQuery 分类: JavaScript 2014-11-24 14:18 155人阅读 评论(0) 收藏
一:导言 有些WEB开发者,会引用一个JQuery类库,然后在网页上写一写$("#"),$("."),写了几年就对别人说非常熟悉JQuery.我曾经也是这样的人 ...
- jQuery 插件autocomplete
jQuery 插件autocomplete 自动加载 参考: http://www.cnblogs.com/Peter-Zhang/archive/2011/10/22/2221147.html ht ...
- [转]不定义JQuery插件,不要说会JQuery
一:导言 有些WEB开发者,会引用一个JQuery类库,然后在网页上写一写("#"),("."),写了几年就对别人说非常熟悉JQuery.我曾经也是这样的人,直 ...
- 解决jQuery插件冲突
项目框架的JS库集成了jQuery,Layout页面(模板页面,类似ASP.NET的母版页)中引用了这些JS,后来使用图表插件(图表插件是基于jQuery的)的时候,项目框架中的JS和图表插件有冲突, ...
随机推荐
- 七周七语言之使用prolog解决爱因斯坦斑马难题
如果你想获得更好的阅读体验,可以前往我在 github 上的博客进行阅读,http://lcomplete.github.io/blog/2013/06/28/sevenlang-prolog/. 目 ...
- Scrum 项目 5.0
5.0--------------------------------------------------- 1.团队成员完成自己认领的任务. 2.燃尽图:理解.设计并画出本次Sprint的燃尽图的理 ...
- 写在SVM之前——凸优化与对偶问题
SVM之问题形式化 SVM之对偶问题 SVM之核函数 SVM之解决线性不可分 >>>写在SVM之前——凸优化与对偶问题 本篇是写在SVM之前的关于优化问题的一点知识,在SVM中会用到 ...
- bond下改变网卡
浪潮服务器打开控制台 用ip addr查看哪个网卡是绑定的,eth2和eth4是绑定状态 用mv命令,更改网卡名称 并将每个网卡里的信息更改 reboot,重启 ip addr查看,eth6和eth8 ...
- VC的常用调试方法
前言 VS是非常强大的IDE,所以掌握VSVC的常用方法,将会使得我们找出问题解决问题事半功倍. 目录 VSVC的常用调试方法 前言 1. Watch窗口查看伪变量 2. 查看指针指向的一序列值 3. ...
- 【Apache】ab工具
格式:ab [options] [http://]hostname[:port]/path -n requests Number of requests to perform //在测试会话中所执行 ...
- css 在背景图上加渐变
<html> <head> <title>我的第一个 HTML 页面</title> <style> .banner { width: %; ...
- PL/SQL中复制粘贴表结构信息
1.打开下图中的Tables文件夹 2.查找要找的表 3.右键单击找到的表—>Describe 4.复制所需的数据到EXCEL表中
- What Is The Promiscuous Mode
What Is The Promiscuous Mode? Some Network Interface Cards (NICs) may not allow network traffic afte ...
- 漫谈ElasticSearch关于ES性能调优几件必须知道的事
lasticSearch是现在技术前沿的大数据引擎,常见的组合有ES+Logstash+Kibana作为一套成熟的日志系统,其中Logstash是ETL工具,Kibana是数据分析展示平台.ES让人惊 ...