当前位置: 首页 > news >正文

c2c网站开发毕业设计自学网站建设

c2c网站开发毕业设计,自学网站建设,滴滴推广联盟,燕窝网站怎么做目录 需求 引入 关键代码 操作界面 ​JavaScript包程序 服务端 ashx 程序 服务端上传后处理程序 小结 需求 在许多应用场景里#xff0c;多文件上传是一项比较实用的功能。实际应用中#xff0c;多文件上传可以考虑如下需求#xff1a; 1、对上传文件的类型、大小…目录 需求 引入 关键代码 操作界面 ​JavaScript包程序 服务端 ashx 程序 服务端上传后处理程序 小结 需求 在许多应用场景里多文件上传是一项比较实用的功能。实际应用中多文件上传可以考虑如下需求 1、对上传文件的类型、大小有一个基本的控制。 2、上传文件时有一个进度显示包括当前文件和整体进度。 3、上传后在服务端后续事件进行一些处理。 引入 首先请在WEB应用程序根目录下创建COMMON目录并引入 JavaScript 程序包该程序包已经打包下载地址为https://download.csdn.net/download/michaelline/88615565。 下载成功后解压到COMMON目录即可请引入如下图中的 JS 文件 另外我们还需要在 app_data目录下创建 ajaxUploadFiles 子目录以备上传创建文件使用。 关键代码 操作界面 界面上放置标准的 input file 控件并将其服务器化即 runatserver。点击选择文件选中所有目标文件后自动实现文件上传功能。 示例界面如下 ​ 示例UI代码如下 input classfile typefile idajaxMfile runatserver onbeginuploadajax_uploadFiles_beginUpload onprogressuploadajax_uploadFiles_progressUpload onenduploadajax_uploadFiles_endUpload multiplemultiple allowtypepptx|docx|mp3|txt|std allowsize500m|100m fileindex0 namefileuploadserverbuttonidajaxEndBtn serverfilelistidajaxReturnFileNameprogresspanelidajaxMfileProgressPanelonchangeajax_uploadFiles(this);return false /asp:TextBox runatserver Width100% IDajaxReturnFileName styledisplay:none /asp:TextBoxbr /asp:button IDajaxEndBtn text后台处理 runatserver styledisplay:none onclickajaxEndBtn_Click /br /br /table styledisplay:none; color:White idajaxMfileProgressPaneltrtd 当前文件:/tdtd styleposition:relative; padding:0pxasp:Label Font-Size9pt stylez-index:1;position:absolute;left:0px;top:-9px; Width300px runatserver IDajax_uploadFiles_curfilename//td/trtrtd styleposition:relative; padding:0px;width:120px当前文件进度asp:Label stylez-index:1;position:absolute;left:85px;top:-9px; runatserver Font-Size9pt IDajax_uploadFiles_upprogress/asp:Label/tdtd styleposition:relative; padding:10pximg idajax_uploadFiles_curprogress stylez-index:1;position:absolute;left:0px;top:4px;width:0px;height:12px alt src/common/Jquery/images/win7progress.jpg /div idajax_uploadFiles_curbg stylez-index:0;position:absolute;left:0px;top:4px;width:300px;height:12px;background-color:Gray/div/td/trtrtd styleposition:relative; padding:0px上传总量进度asp:Label stylez-index:1;position:absolute;left:85px;top:-9px; runatserver Font-Size9pt IDajax_uploadFiles_cprogress/asp:Label/tdtd styleposition:relative; padding:10pximg idajax_uploadFiles_totalprogress stylez-index:1;position:absolute;left:0px;top:4px;width:0px;height:12px alt src/common/Jquery/images/win7progress2.jpg /div idajax_uploadFiles_totalbg stylez-index:0; position:absolute;left:0px;top:4px;width:300px;height:12px;background-color:Gray/div/td/tr/tabletable stylecolor:White; width:100%trtd styleposition:relativeasp:Label runatserver Font-Size11pt IDajax_uploadFiles_serverProcessTip/asp:Label/td/tr/table input file 控件的一些设置如下 1onbeginuploadajax_uploadFiles_beginUpload   js方法开始上传前事件默认值 2onprogressuploadajax_uploadFiles_progressUpload   js方法上传中事件默认值 3onenduploadajax_uploadFiles_endUpload    js方法选择完文件上传事件默认值 4multiplemultiple         控件属性允许多文件选中上传 5allowtypepptx|docx|mp3|txt|std    自定义属性允许上传的文件类型以 | 分隔 6allowsize500m|100m    自定义属性允许上传的文件最大尺寸可以以 | 分隔并一一对应如果不对应则根据 allowtype 的设置从左至右进行匹配 如举例中的设置则表示为pptx 允许最大 500M , docx 最大 100M后面未设置则均为100M 7 serverbuttonidajaxEndBtn   自定义属性执行的服务器按钮ID默认值  8serverfilelistidajaxReturnFileName  自定义属性服务器端返回的文件ID列表默认值 9οnchangeajax_uploadFiles(this);return false  自定义属性js方法选择文件后自动执行上传功能默认值 根据示例代码的设置以上部分除了 allowtype和 allowsize 均可以不用改变设置。 上传中的效果如下图 JavaScript包程序 本包程序实现了前面设置的界面元素方法、事件、属性的实现及对文件上传的客户端控制示例代码如下 //批量上传文件的内置默认辅助方法表示每上传一个文件之前发生的事件//事件的fileObj参数代表 file对象上传控件由主方法自动传入开发者可以重新指定自定义方法function ajax_uploadFiles_beginUpload(fileObj) {var fIndex parseInt(fileObj.getAttribute(fileindex), 10);if (fIndex 0) {document.getElementById(ajax_uploadFiles_serverProcessTip).innerHTML ;document.getElementById(ajax_uploadFiles_upprogress).innerHTML ;document.getElementById(ajax_uploadFiles_cprogress).innerHTML ;document.getElementById(ajax_uploadFiles_totalprogress).style.width 0px;document.getElementById(fileObj.getAttribute(serverfilelistid)).value ;}document.getElementById(ajax_uploadFiles_curfilename).innerHTML fileObj.files[fIndex].name;}//批量上传文件的内置默认辅助方法表示当前正在上传文件时发生的事件主要用于显示上传进度//事件的fileObj参数代表 file对象上传控件 loaded已经上传的文件总字节, total正在上传的文件总字数,// percent:不超过100的整数表示为百分比。这些参数由主方法自动传入开发者可以重新指定自定义方法function ajax_uploadFiles_progressUpload(fileObj, loaded, total, percent) {document.getElementById(ajax_uploadFiles_upprogress).innerHTML ( percent %);var curb parseInt(document.getElementById(ajax_uploadFiles_curbg).style.width, 10);document.getElementById(ajax_uploadFiles_curprogress).style.width Math.floor(curb * loaded / total) px;}//批量上传文件的内置默认辅助方法表示当前文件上传完成时发生的事件主要用于处理文件上传后的跟踪处理并且返回服务器上保存的文件列到一个文本框中以分隔//事件的fileObj参数代表 file对象上传控件 type上传状态返回包括success成功error失败, //data文件的数据暂时未使用, desfile要保存在服务器上的文件名// 这些参数由主方法自动传入开发者可以重新指定自定义方法function ajax_uploadFiles_endUpload(fileObj, type, data, desfile) {var fIndex parseInt(fileObj.getAttribute(fileindex), 10);var filecount fileObj.files.length;document.getElementById(fileObj.getAttribute(serverfilelistid)).value desfile |;var totalb parseInt(document.getElementById(ajax_uploadFiles_totalbg).style.width, 10);document.getElementById(ajax_uploadFiles_totalprogress).style.width Math.floor(totalb * (fIndex 1) / filecount) px;document.getElementById(ajax_uploadFiles_cprogress).innerHTML ( Math.floor(100 * (fIndex 1) / filecount) %);if (fIndex filecount - 1) {fIndex;fileObj.setAttribute(fileindex, fIndex);ajax_uploadFiles(fileObj);return;}fileObj.setAttribute(fileindex, 0);if (type success) {document.getElementById(ajaxMfile).style.displaynone;document.getElementById(ajax_uploadFiles_serverProcessTip).innerHTML 上传完成正在进行后台处理...;document.getElementById(fileObj.getAttribute(serverbuttonid)).click();} else if (type error) {alert(error);}}//生成一个guidfunction newguid() {function S4() {return (((1 Math.random()) * 0x10000) | 0).toString(16).substring(1);}return (S4() S4() - S4() - S4() - S4() - S4() S4() S4());}//批量上传文件的主方法fileObj参数代表 file对象上传控件function ajax_uploadFiles(fileObj) {var formData new FormData();var fIndex parseInt(fileObj.getAttribute(fileindex), 10);var filecount fileObj.files.length;if (filecount 0) {alert(请先浏览选择文件...);return;}var uploadSessionId newguid();var upfile fileObj.files[fIndex].name;var dotpos upfile.lastIndexOf(.);var desfile ;var exname ;if (dotpos 0) {exname upfile.substring(dotpos 1, upfile.length);desfile uploadSessionId upfile.substring(0, dotpos) . exname;} else {desfile uploadSessionId upfile;}//        alert(Math.round(upsize / 1024));if (fIndex 0) {var allowtype fileObj.getAttribute(allowtype);var allowsize fileObj.getAttribute(allowsize);var at allowtype.split(|);var as allowsize.split(|);for (var j 0; j filecount; j) {var validfile fileObj.files[j].name;var upsize fileObj.files[j].size;var validdotpos validfile.lastIndexOf(.);var validexname ;if (validdotpos 0) {validexname validfile.substring(validdotpos 1, validfile.length);}var i 0;if (allowtype ! ) {var find false;for (i 0; i at.length; i) {if (at[i].toLowerCase() validexname.toLowerCase()) {find true;break;}}if (find false) {alert(文件 validfile 上传的类型不符合要求仅允许上传扩展名为 allowtype.split(|).join(、) 的文件。);fileObj.style.display ;document.getElementById(fileObj.getAttribute(progresspanelid)).style.display none;var t fileObj;t.outerHTML t.outerHTML;return;}}if (allowsize ! ) {if (at.length as.length) {} else {i 0;}as[i] as[i].toLowerCase();var csize parseInt(as[i]);var tsize upsize;if (as[i].lastIndexOf(k) ! -1) {csize csize * 1024;tsize Math.round(upsize / 1024) KB;} else if (as[i].lastIndexOf(m) ! -1) {csize csize * 1024 * 1024;tsize Math.round(upsize / 1024 / 1024) MB;} else if (as[i].lastIndexOf(g) ! -1) {csize csize * 1024 * 1024 * 1024;tsize Math.round(upsize / 1024 / 1024 / 1024) GB;} else if (as[i].lastIndexOf(t) ! -1) {csize csize * 1024 * 1024 * 1024 * 1024;tsize Math.round(upsize / 1024 / 1024 / 1024 / 1024) TB;}if (upsize csize) {alert(上传文件 validfile 的大小近 tsize ,系统规定大小不能超过 as[i].toUpperCase() ,请重新选择。);fileObj.style.display ;document.getElementById(fileObj.getAttribute(progresspanelid)).style.display none;var t fileObj;t.outerHTML t.outerHTML;return;}}} //j} // findex//        document.getElementById(callObjId).disabled disabled;//        if (beginFuncName ! null) {//            beginFuncName(fIndex, filecount,upfile);//        }fileObj.style.display none;document.getElementById(fileObj.getAttribute(progresspanelid)).style.display ;var findfunc fileObj.getAttribute(onbeginupload);if (eval(findfunc)) {var execfunc eval(findfunc);//            alert(findfunc);execfunc(fileObj);}formData.append(file, fileObj.files[fIndex]); //append()里面的第一个参数file对应permission/upload里面的参数filevar processUploadUrl window.location.protocol // window.location.host //common//uploadfile.ashx?guid uploadSessionId;$.ajax({type: post,async: true,  //这里要设置异步上传才能成功调用myXhr.upload.addEventListener(progress,function(e){}),progress的回掉函数Accept: text/html;charsetUTF-8,data: formData,contentType: multipart/form-data,url: processUploadUrl,processData: false, // 告诉jQuery不要去处理发送的数据contentType: false, // 告诉jQuery不要去设置Content-Type请求头xhr: function () {myXhr $.ajaxSettings.xhr();if (myXhr.upload) { // check if upload property existsmyXhr.upload.addEventListener(progress, function (e) {var loaded e.loaded;                  //已经上传大小情况 var total e.total;                      //附件总大小 var percent Math.floor(100 * loaded / total);     //已经上传的百分比  //                        if (progressFuncName ! null) {//                            progressFuncName(loaded, total, percent);//                        }var findfunc fileObj.getAttribute(onprogressupload);if (eval(findfunc)) {var execfunc eval(findfunc);//            alert(findfunc);execfunc(fileObj, loaded, total, percent);}//                            $(#processBar).css(width, percent);}, false); // for handling the progress of the upload}return myXhr;},success: function (data) {if (fIndex fileObj.files.length - 1) {fileObj.style.display ;document.getElementById(fileObj.getAttribute(progresspanelid)).style.display none;var t fileObj;t.outerHTML t.outerHTML;}//                if (endFuncName ! null) {//                    endFuncName(success, data, desfile, fIndex,filecount);//                }var findfunc fileObj.getAttribute(onendupload);if (eval(findfunc)) {var execfunc eval(findfunc);//            alert(findfunc);execfunc(fileObj, success, data, desfile);}},error: function (XMLHttpRequest, textStatus, errorThrown) {alert(errorThrown);if (endFuncName ! null) {endFuncName(fileObj, error, null, );}}});}  服务端 ashx 程序 ashx,一般处理程序HttpHandler是·NET众多web组件的一种。一个 httpHandler 接受并处理一个http请求类似 Java 中的 servlet 。 本程序实现服务器端上传文件的接收和另存操作,在这里我们存为uploadfile.ashx代码如下 % WebHandler LanguageC# ClassHandler %using System; using System.Web; using System.IO;public class Handler : IHttpHandler {public void ProcessRequest (HttpContext context) {if (context.Request.Files.Count 0){//HttpContext.Current.Request.FilePath;string strPath System.Web.HttpContext.Current.Server.MapPath(~/app_data/ajaxUploadFiles/);string strName context.Request.Files[0].FileName;string extPath.GetExtension(strName);string filename HttpContext.Current.Request.QueryString[guid].ToString()Path.GetFileNameWithoutExtension(strName);if(ext!){filename filename   ext;}context.Request.Files[0].SaveAs(System.IO.Path.Combine(strPath, filename));}}public bool IsReusable {get {return false;}}}服务端上传后处理程序 在多个文件上传到服务器后我们需要对文件进行后期处理在前端我们设置了ID为 “ajaxEndBtn”的服务器按钮进行模拟调用其 click 事件。 服务器端按钮处理事件示例代码如下 void ajaxEndBtn_Click(object sender, EventArgs e){//得到保存后的文件名列表string[] upfiles ajaxReturnFileName.Text.Split(|);//给予用户基本的提示ajax_uploadFiles_serverProcessTip.Text 本次上传分析共计上传 (upfiles.Length - 1).ToString() 个文件。;//遍历上传文件列表进行后期处理foreach (string filename in upfiles){if (filename.Trim() ) continue;string upfilename Request.PhysicalApplicationPath app_data\\ajaxUploadFiles\\ filename;string exname System.IO.Path.GetExtension(upfilename);//执行业务处理程序} 小结 以上提供的代码仅供参考默认的设置仅可能提供最基础的实现比如 ashx 程序还需要进行安全控制进度图片和UI可以重新设计实际的业务可以根据需求对控件的属性、事件进行重写。 以上就是自己的一些分享时间仓促不妥之处还请大家批评指正
http://www.w-s-a.com/news/841249/

相关文章:

  • 菜鸟网站编程广州网站设计权威乐云践新
  • 网站做接口到app 价格大地资源免费视频观看
  • 怎么给钓鱼网站做防红网站建设相关的
  • 教育培训的网站建设湖南网站建设小公司
  • 福建南平网站建设创意交易平台网
  • 做直播网站要哪些技术内容营销理论
  • 价格划算的网站开发怎么找有赞做网站
  • 做网站店铺图片用什么软件网络营销方案格式
  • 做外贸要自己建网站吗有效的网络营销方式
  • 精通网站开发书籍做网站获取手机号码
  • 论坛做视频网站有哪些济南新站seo外包
  • 哪类型网站容易做冷水滩做微网站
  • 搭建企业网站流程保定徐水网站建设
  • 建设单位到江川区住房和城乡建设局网站伦敦 wordpress 设计
  • 响应式网站的服务麦德龙网站建设目标
  • 做国外单的网站叫什么海南省海口市网站建设
  • 杭州响应式网站案例wordpress5.2.2
  • 网站建设运营维护合同wordpress资源搜索插件
  • 国外网站流量查询东莞网站建设教程
  • 餐饮类网站建设达到的作用东莞工程建设交易中心网
  • 网站设计 知识产权湖北网站建设xiduyun
  • 猫咪网站模版下载中国风 古典 红色 网站源代码
  • 个人网站备案模板制作网站首页
  • 潍坊正规建设网站网站建设设计作业
  • 推荐一下网站谢谢辽宁住房城乡建设部官方网站
  • 网站文件大小英选 网站开发
  • 济南建网站哪家好wordpress编辑器排行
  • 在福州做搬家网站多少钱画册设计网站有哪些
  • 如何让别人浏览我做的网站哪些方法可以建设网站
  • 网站建设与管理网络推广的优点