им нужно будет скачать его как вложение
string fileName = "text.txt";
string filePath = Server.MapPath("~/" + fileName);
Response.Clear();
Response.AppendHeader("content-disposition", "attachment; filename=" + fileName);
Response.ContentType = "application/octet-stream";
Response.WriteFile(filePath);
Response.Flush();
Response.End();