手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JS下载文件|无刷新下载文件示例代码
JS下载文件|无刷新下载文件示例代码
摘要:后台代码Handler.ashx复制代码代码如下:usingSystem;usingSystem.Web;publicclassHandle...

后台代码Handler.ashx

复制代码 代码如下:

<%@ WebHandler Language="C#" %>

using System;

using System.Web;

public class Handler : IHttpHandler {

public void ProcessRequest (HttpContext context) {

string fileName = "web.config";//客户端保存的文件名

string filePath = context.Server.MapPath("web.config");//路径

//以字符流的形式下载文件

System.IO.FileStream fs = new System.IO.FileStream(filePath, System.IO.FileMode.Open);

byte[] bytes = new byte[(int)fs.Length];

fs.Read(bytes, 0, bytes.Length);

fs.Close();

context.Response.ContentType = "application/octet-stream";

//通知浏览器下载文件而不是打开

context.Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));

context.Response.BinaryWrite(bytes);

context.Response.Flush();

context.Response.End();

}

public bool IsReusable {

get {

return false;

}

}

}

前端代码:

复制代码 代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<script src="jquery-1.7.2.min.js" type="text/javascript"></script>

<title></title>

<script>

function download_file(url)

{

if (typeof (download_file.iframe) == "undefined")

{

var iframe = document.createElement("iframe");

download_file.iframe = iframe;

document.body.appendChild(download_file.iframe);

}

// alert(download_file.iframe);

download_file.iframe.src = url;

download_file.iframe.style.display = "none";

}

</script>

</head>

<body>

<a href="javascript:void(0);">aaaaa</a>

<a href="javascript:void(0);">bbbbb</a>

<a href="javascript:void(0);">ccccc</a>

</body>

</html>

【JS下载文件|无刷新下载文件示例代码】相关文章:

Node.js本地文件操作之文件拷贝与目录遍历的方法

使用Node.js处理前端代码文件的编码问题

实现高性能JavaScript之执行与加载

手机号码本地检测 原创

JavaScript中switch语句的用法详解

JS函数实现鼠标指向图片后显示大图代码

JavaScript操作XML文件之XML读取方法

在页面中输出当前客户端时间javascript实例代码

jQuery异步上传文件插件ajaxFileUpload详细介绍

免费空间广告万能消除代码

精品推荐
分类导航