当前位置:编程学习 > C#/ASP.NET >>

生成html页面,下载页面 白页问题!!!! 求解决!

//初始化页面
            Response.Clear();
            if (Request.QueryString["Type"].ToString() == "html")
            {
                Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
            }
            else
            {
                Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
            }
            Response.ContentType = "Application/ms-excel";
            string type = Request.QueryString["Type"].ToString();
            Response.AppendHeader("Content-Disposition", "attachment;filename=\"OrderListReport_" + DateTime.Now.ToString("yyyymmddhhmm") + "." + type + "\"");

            //CreatePage();
            this.Response.Write("fdsfsdfsdf");
            Response.Flush();
            Response.Close();
            Response.End();


 上面是输出代码,目前就是输出一个html页面,提示下载!! 但是现在输出的是白页!!! 个人感觉应该不是程序问题! 想请教下! 还可能是上面影响了!! .net  --------------------编程问答-------------------- 我用你代码试了 下载页面不是空白啊 --------------------编程问答--------------------  这个就是神奇的地方,代码我基本肯定没问题呢!  但是在服务器上是用段代码 打开的就是空白! 超级郁闷!
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,