default.aspx
Код: Выделить всё
< /code>
[b] default.aspx.cs[/b]
protected void btnSubmit_Click(object sender, EventArgs e)
{
string filenm = string.Empty;
HttpFileCollection fileCollection = Request.Files;
for (int i = 0; i < fileCollection.Count; i++)
{
HttpPostedFile uploadfile = fileCollection[i];
if (uploadfile.ContentLength > 0)
{
string filename = uploadfile.FileName;
string imgFolder = ConfigurationManager.AppSettings["AdminSearchImgFolderPath"];
System.Drawing.Image image = System.Drawing.Image.FromStream(uploadfile.InputStream);
image.Save(imgFolder + "\\" + GetSearchImageFileName("TEST"), ImageFormat.Jpeg);
}
}
}
Я не могу идентифицировать, какие файлы (ы) из конкретного элемента управления FileUpload < /strong>? Любое решение с использованием существующей структуры 4.0 ??>
Подробнее здесь: https://stackoverflow.com/questions/366 ... in-asp-net
Мобильная версия