在asp.net 2.0中,上传文件时变的比较方便了,因为有了fileupload控件,使用十分简单,
если (FileUpload1.HasFile)
пытаться
{
FileUpload1.SaveAs("d:\luceneData\" + FileUpload1.FileName);
Label1.Text = "Имя файла: " +
FileUpload1.PostedFile.FileName + "<br>" +
FileUpload1.PostedFile.ContentLength + " kb<br>" +
"Тип контента: " +
FileUpload1.PostedFile.ContentType;
}
поймать (Исключение ex)
{
Label1.Text = "ОШИБКА: " + ex.Message.ToString();
}
еще
{
Label1.Text = "Вы не указали файл.";
}
Файл web.config размером 4 МБ, размер файла 4 МБ.
<httpRuntime
выполнениеTimeout="110"
maxRequestLength="11000"
requestLengthDiskThreshold="80"
useFullyQualifiedRedirectUrl="false"
минFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="5000"
EnableKernelOutputCache="истина"
EnableVersionHeader="истина"
requireRootedSaveAsPath="true"
включить = "истина"
выключениеTimeout="90"
задержкаNotificationTimeout="5"
waitChangeNotification="0"
maxWaitChangeNotification="0"
EnableHeaderChecking="истина"
sendCacheControlHeader="истина"
apartmentThreading="false" />
设置maxRequestLenth, размер 11000 КБ, 11 МБ, размер файла 11 МБ, размер файла, размер файла, размер файла, размер
файла
строка filepath = "d:\luceneData\";
HttpFileCollection uploadedFiles = Request.Files;
for (int i = 0; я <uploadedFiles.Count; i++)
{
HttpPostedFile userPostedFile = uploadedFiles [i];
пытаться
{
если (userPostedFile.ContentLength > 0)
{
Label1.Text += "<u>Файл №" + (i + 1) +
"</u><br>";
Label1.Text += "Тип содержимого файла: " +
userPostedFile.ContentType + "<br>";
Label1.Text += "Размер файла: " +
userPostedFile.ContentLength + "kb<br>";
Label1.Text += "Имя файла: " +
userPostedFile.FileName + "<br>";
userPostedFile.SaveAs(путь к файлу + "\" +
System.IO.Path.GetFileName(userPostedFile.FileName));
Label1.Text += "Место сохранения: " +
путь к файлу + "\" +
System.IO.Path.GetFileName(userPostedFile.FileName) +
"<p>";
}
}
поймать (Исключение Ex)
{
Label1.Text += "Ошибка: <br>" + Ex.Message;
}
}
}
http://www.cnblogs.com/jackyrong/archive/2006/09/26/514969.html