在asp.net 2.0中,上传文件时变的比较方便了,因为有了fileupload控件,使用十分简单,
se (FileUpload1.HasFile)
tentar
{
FileUpload1.SaveAs("d:\luceneData\" + FileUpload1.FileName);
Label1.Text = "Nome do arquivo: " +
FileUpload1.PostedFile.FileName + "<br>" +
FileUpload1.PostedFile.ContentLength + " kb<br>" +
"Tipo de conteúdo: " +
FileUpload1.PostedFile.ContentType;
}
pegar (exceção ex)
{
Label1.Text = "ERRO: " + ex.Message.ToString();
}
outro
{
Label1.Text = "Você não especificou um arquivo.";
}
还可以在web.config文件中,突破默认上传限制的4MB,比如
<httpRuntime
execuçãoTimeout="110"
maxRequestLength="11000"
requestLengthDiskThreshold="80"
useFullyQualifiedRedirectUrl="falso"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="5000"
enableKernelOutputCache="true"
enableVersionHeader = "verdadeiro"
requireRootedSaveAsPath = "true"
ativar = "verdadeiro"
shutdownTimeout = "90"
atrasoNotificationTimeout = "5"
waitChangeNotification = "0"
maxWaitChangeNotification = "0"
enableHeaderChecking="true"
sendCacheControlHeader = "verdadeiro"
apartamentoThreading="false" />
设置maxRequestLenth属性,这里为11000KB,即11MB。
而对于多文件上传,也很简单,比如一个例子
string caminho do arquivo = "d:\luceneData\";
HttpFileCollection uploadedFiles = Request.Files;
for (int i = 0; i < uploadedFiles.Count; i++)
{
HttpPostedFile userPostedFile = uploadedFiles[i];
tentar
{
if (userPostedFile.ContentLength > 0)
{
Label1.Text += "<u>Arquivo #" + (i + 1) +
"</u><br>";
Label1.Text += "Tipo de conteúdo do arquivo: " +
userPostedFile.ContentType + "<br>";
Label1.Text += "Tamanho do arquivo: " +
userPostedFile.ContentLength + "kb<br>";
Label1.Text += "Nome do arquivo: " +
userPostedFile.FileName + "<br>";
userPostedFile.SaveAs(caminho do arquivo + "\" +
System.IO.Path.GetFileName(userPostedFile.FileName));
Label1.Text += "Local onde foi salvo: " +
caminho do arquivo + "\" +
System.IO.Path.GetFileName(userPostedFile.FileName) +
"<p>";
}
}
pegar (Exceção Ex)
{
Label1.Text += "Erro: <br>" + Ex.Message;
}
}
}
http://www.cnblogs.com/jackyrong/archive/2006/09/26/514969.html