protected void Button1_Click(object sender, EventArgs e)
{
Response.ContentType = "text/txt";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + "file.txt");
Response.Write(@"C:\temp.txt");
Response.End();
}
Привет,
предыдущий код позволяет мне передать один файл за один клик, открыв диалоговое окно «Сохранить как».
Я хотел бы перенести 2 файла в один клик, открыв 2 диалоговых окна «Сохранить как»
У меня может быть слишком упрощенный подход, потому что ниже не работает, он просто приносит один «Сохранить как»
protected void Button1_Click(object sender, EventArgs e)
{
Response.ContentType = "text/txt";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + "file.txt");
Response.Write(@"C:\temp.txt");
Response.End();
Response.ContentType = "text/txt";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + "file.txt");
Response.Write(@"C:\temp.txt");
Response.End();
}
Спасибо за вашу помощь!