我正在开发一个发送电子邮件的模块,其中一个功能是上传多个文件......
我以此作为参考来创建它: http ://www.dotnetcurry.com/ShowArticle.aspx?ID=68
我还必须添加 jquery 以允许它上传多个文件。
<script src="Scripts/jquery-1.3.2.js" type="text/javascript">
</script>
<script src="Scripts/jquery.MultiFile.js" type="text/javascript">
</script>
但是,如果我在表单中按下按钮时上传了大于 10MB 的文件(我猜每当回发发生时都会发生这种情况),浏览器将无法加载该页面。所以我想要的是在我的按钮中触发这个功能:
protected void imgBtnEnviar_Click(object sender, ImageClickEventArgs e)
{
int intBytes = 0;
string strArchivos = "";
string strRutaArchivos = "";
bool blnBytes = true;
bool blnPermitir = true;
try
{
HttpFileCollection hfc = Request.Files;
//Check if all files together are less than 10mb
foreach (HttpPostedFile hpf in hfc)
{
intBytes += hpf.ContentLength;
if (intBytes > 11000000)
{
blnBytes = false;
break;
}
}
if (blnBytes)
{
//Upload All attached files to server
foreach (HttpPostedFile hpf in hfc)
{
if (hpf.FileName == "")
{
break;
}
string strNombre = ((int)Session["Grupo"]) + "_" + (int)Session["EmailIdCliente"] + "_" + DateTime.Now.ToString("MM-dd-yyyy_HH.mm.ss") + "_" + Path.GetFileName(hpf.FileName);
strArchivos += strNombre + ";";
strRutaArchivos += Server.MapPath("~/Archivos/") + strNombre + ";";
hpf.SaveAs(Server.MapPath("~/Archivos/") + strNombre);
}
}
}
catch
{
blnPermitir = false;
}
if (!blnBytes || !blnPermitir)
{
//Error Message Displayed To User
ClientScript.RegisterStartupScript(this.GetType(), "Mensaje", "alert('Maximo Puede Enviar 10MB En Archivos');", true);
}
else
{
//Moving on to send email
}
}
我想要的是,如果 blnBytes 等于 false(当所有组合文件超过 10mb 时它变为 false)它只会显示一条错误消息,但是即使单个文件大于 10mb,我怎样才能使它工作??... .
希望你能帮助我谢谢