关于使用客户端控件和jquery上传文件
$.ajaxFileUpload({ //type: "post", fileElementId: "importFile", url: "../ashx/BaseInfo/StationManage.ashx", data: { parapath: "i", action: "import" }, dataType: "json", secureuri: false, success: function (json) { }, error: function () { Common.ShowAlert("提示", "访问服务器失败或数据返回格式错误", function () { }); } });
注意:需要写在全局JS中,不能写在其他方法中,否则无效;
另,input需要有name,和ID一样(不一样的情况没测试过),否则无效
二.使用input:
<p><span class="label">选择文件:</span><input type="file" id="importFile" name="importFile" /></p>
三.后台获取:
HttpFileCollection postedFile = context.Request.Files; HttpFileCollection postedFile2 = HttpContext.Current.Request.Files; string savePath = context.Server.MapPath(("/UploadFile\\") + postedFile[0].FileName);//Server.MapPath 获得虚拟服务器相对路径 postedFile[0].SaveAs(savePath);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。