Published in: ASP
//For TEXT: Response.ContentType = "text/txt"; Response.AppendHeader("Content-Disposition", "attachment; filename=" + "file.txt"); Response.Write(file.ToString()); Response.End();
You need to login to post a comment.
ASP.NET 3.5 Unleashed
ASP.NET 3.5 Unleashed is the most comprehensive book available on the Microsoft ASP.NET 3.5 Framework, covering all aspects of the ASP.NET 3.5 Framework--no matter how advanced.
jink on 04/30/09
Published in: ASP
//For TEXT: Response.ContentType = "text/txt"; Response.AppendHeader("Content-Disposition", "attachment; filename=" + "file.txt"); Response.Write(file.ToString()); Response.End();
You need to login to post a comment.