ASP.NET MVC: Text to File

Returns file without saving to disk.
public ActionResult Download()
{
return File(Encoding.UTF8.GetBytes("the text"), "text/plain", "filename.txt");
}

No comments: