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和图表插件有冲突, ...
随机推荐
- 第八章 Mysql运算符
算术运算符 符号 表达式形式 作用 + x1+x2 加法 - x1-x2 减法 * x1*x2 乘法 / x1/x2 除法 div x1 div x2 同上 % x1%x2 取余 mod mod(x1 ...
- 使用ssh公钥登陆
记录一下使用的具体命令,具体参考: Centos设置禁止密码登录而只使用密钥登录SSH方法 优先参考这个. ssh使用公钥授权不通过的问题解决 Xshell配置ssh免密码登录-密钥公钥(Publi ...
- win7 64位机ODBC的数据源DSN添加和移除问题
64位机器上ODBC的操作方法与32位机器是不一样的,如果直接从控制面板上-管理员工具-ODBC进去的话会发现User DSN以及System DSN里面都为空,ADD的时候连ODBC Driver都 ...
- 爬虫学习之-操作mysql
在操作数据库的时候,python2中一般使用mysqldb,但在python3中已经不在支持mysqldb了,我们可以用pymysql和mysql.connector.本文的所有操作都是在python ...
- 内存测试——Android Studio自带内存检测功能
AndroidStudio 自带 CPU 和内存检测工具,绘制出变化图,可以直观明了的看出内存和cpu的变化曲线. 手机连接电脑,选择要调试的手机,选择要检测的应用进程,Memory是内存监控,CPU ...
- [三]SpringBoot 之 热部署
如下配置 <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring ...
- 如何使用火狐下的两款接口测试工具RESTClient和HttpRequester发送post请求
Chrome下有著名的Postman,那火狐也有它的左膀右臂,那就是RESTClient和HttpRequester.这两款工具都是火狐的插件,主要用来模拟发送HTTP请求,HTTP请求最常用的两种方 ...
- Java判断一个字符串str不为空:方法及时间效率
判断一个字符串str不为空的方法有: 1.str == null; 2.”“.equals(str): 3.str.length <= 0; 4.str.isEmpty(): 注意:length ...
- Closest Number in Sorted Array
Given a target number and an integer array A sorted in ascending order, find the index i in A such t ...
- [POJ1094] Sorting It All Out
link 题目大意 给出$m$个不等式关系,问可以从第几个开始确定所有之间的大小关系.若无解请输出是无法确定还是与已知矛盾. 试题分析 这题是真的是坑啊,尽然放在$floyd$传到闭包上面,还用二分, ...