Response.Clear();
            Response.Buffer = true;
            Response.AppendHeader("Content-Disposition", "attachment;filename=123.txt");
            Response.ContentType = "application/ms-txt";
            Response.Output.WriteLine("0213");
            Response.Output.WriteLine("1213");
            Response.End();
posted @ 2008-07-21 14:27 DreamTrue 阅读(255) 评论(0) 编辑