在asp.net 2.0中,上传文件时变的比较方便了,因为有了fileupload控件,使用十分简单,
si (FileUpload1.HasFile)
intentar
{
FileUpload1.SaveAs("d:\luceneData\" + FileUpload1.FileName);
Label1.Text = "Nombre de archivo: " +
FileUpload1.PostedFile.FileName + "<br>" +
FileUpload1.PostedFile.ContentLength + "kb<br>" +
"Tipo de contenido: " +
FileUpload1.PostedFile.ContentType;
}
captura (Excepción ex)
{
Label1.Text = "ERROR: " + ex.Message.ToString();
}
demás
{
Label1.Text = "No has especificado ningún archivo.";
}
还可以在web.config文件中,突破默认上传限制的4MB,比如
<httpTiempo de ejecución
tiempo de ejecución="110"
maxRequestLength="11000"
requestLengthDiskThreshold="80"
useFullyQualifiedRedirectUrl="falso"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="5000"
enableKernelOutputCache="verdadero"
enableVersionHeader="verdadero"
requireRootedSaveAsPath="true"
habilitar = "verdadero"
apagadoTimeout="90"
retrasoNotificaciónTimeout="5"
esperarCambiarNotificación="0"
maxWaitChangeNotification="0"
enableHeaderChecking="verdadero"
sendCacheControlHeader="verdadero"
apartamentoThreading="false" />
设置maxRequestLenth属性,这里为11000KB,即11MB。
而对于多文件上传,也很简单,比如一个例子
ruta de archivo de cadena = "d:\luceneData\";
HttpFileCollection uploadedFiles = Solicitud.Archivos;
para (int i = 0; i < uploadedFiles.Count; i++)
{
HttpPostedFile userPostedFile = archivos cargados[i];
intentar
{
si (userPostedFile.ContentLength > 0)
{
Etiqueta1.Texto += "<u>Archivo #" + (i + 1) +
"</u><br>";
Label1.Text += "Tipo de contenido de archivo: " +
usuarioPostedFile.ContentType + "<br>";
Label1.Text += "Tamaño de archivo: " +
usuarioPostedFile.ContentLength + "kb<br>";
Etiqueta1.Texto += "Nombre de archivo: " +
usuarioPostedFile.FileName + "<br>";
userPostedFile.SaveAs(ruta del archivo + "\" +
System.IO.Path.GetFileName(userPostedFile.FileName));
Label1.Text += "Ubicación donde se guardó: " +
ruta de archivo + "\" +
System.IO.Path.GetFileName(usuarioPostedFile.FileName) +
"<p>";
}
}
captura (Excepción Ex)
{
Label1.Text += "Error: <br>" + Ej.Mensaje;
}
}
}
http://www.cnblogs.com/jackyrong/archive/2006/09/26/514969.html