zoukankan      html  css  js  c++  java
  • ExtAspNet下通过文档路径实现文档的下载

    <ext:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" EnableAjax="false">//<span style="font-family: Arial, Helvetica, sans-serif;">EnableAjax="false"最重要了</span>
    
            </ext:Button>

     protected void Button1_Click(object sender, EventArgs e)
        {
            try
            {
                string filepath = "E:\123.xls";
                string filename = System.IO.Path.GetFileName(filepath);
                Response.Clear();
                Response.ClearHeaders();
                Response.Buffer = false;
                Response.ContentType = "application/octet-stream";
                //Response.ContentEncoding=System.Text.Encoding.GetEncoding("utf-8");
                Response.AddHeader("Content-Disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode(filename, Encoding.UTF8));
                Response.WriteFile(filepath);
                Response.Flush();
                Response.End();
            }
            catch (Exception E)
            {
                //alert("没有找到您所要下载的数据!

    "); } }


  • 相关阅读:
    Desert King
    Dropping tests
    01分数规划小结
    简单的数学题
    [HAOI2016]放棋子
    [SDOI2017]数字表格
    诸侯放置
    LJJ爱数数
    车的放置
    [SDOI2014]数表
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/6720133.html
Copyright © 2011-2022 走看看