3

我正在开发一个发送电子邮件的模块,其中一个功能是上传多个文件......

我以此作为参考来创建它: 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,我怎样才能使它工作??... .

希望你能帮助我谢谢

4

2 回答 2

2

你可以试试这个。。

foreach (HttpPostedFile hpf in hfc)
{
    if(hpf.ContentLength > 11000000)
    {
        blnBytes = false;
        break;
    }
    intBytes += hpf.ContentLength;
    if (intBytes > 11000000)
    {
        blnBytes = false;
        break;
    }
}
于 2012-09-18T21:28:21.730 回答
2

您必须在 web.config 中启用大文件支持(httpRuntime、maxRequestLength 参数)。

这是示例:

    <httpRuntime requestValidationMode="2.0"
     executionTimeout="6000"
     maxRequestLength="20485760"
     requestLengthDiskThreshold="80"
     useFullyQualifiedRedirectUrl="false"
     minFreeThreads="8"
     minLocalRequestFreeThreads="4"
     appRequestQueueLimit="5000"
     enableKernelOutputCache="true"
     enableVersionHeader="true"
     requireRootedSaveAsPath="true"
     enable="true"
     shutdownTimeout="90"
     delayNotificationTimeout="5"
     waitChangeNotification="0"
     maxWaitChangeNotification="0"
     enableHeaderChecking="true"
     sendCacheControlHeader="true"
     apartmentThreading="false" />

更多相关信息可以在这里找到:http: //msdn.microsoft.com/en-us/library/e1f13641 (v=vs.71).aspx

于 2012-09-18T21:24:22.237 回答