1

我正在做一个项目,我使用 uploadify 控件进行文件上传,我必须将文件大小限制设置为 5MB,我在 这里看到了它的文档

我尝试设置 5MB,但是当我选择 3MB 左右的文件时,它仍然显示文件大小错误

这是我的代码

var sizelimit = '5MB'; //or '5120'
$('#file_upload').uploadify({
        'uploader': ResourceUplodify.Uploader,
        'script': ResourceUplodify.ScriptFile,
        'cancelImg': ResourceUplodify.CancelImg,
        'folder': ResourceUplodify.Folder,
        'fileDesc': 'Document Files',
        'buttonImg': '../../Content/images/Attach-File.jpg',
        'fileExt': '*.pdf;*.doc;*.ppt;*.odt;*.rtf;*.txt',
        // 'sizeLimit': 10485760,
        'sizeLimit': sizelimit,
        'height': 29,
        'width': 90,
        'buttonText': 'Attach File',
        'multi': false,
        'auto': false,
        'onSelect': function (a, b, c, d, e) {          
        },
        'onComplete': function (a, b, c, d, e) {
            //            if (d != '1') {          
        },
        'onError': function () {

        }
    });

我也想使用uploadify的会话,他们已经展示了使用会话的PHP代码,但我不知道如何在C#中使用会话(使用uploadify offcourse)

在 Uploadify 中使用 Session

如何在 MVC3(C# 代码)中访问 formdata 的值

4

2 回答 2

2

ASP.NET 中的默认请求大小限制为 4MB。

<httpRuntime>如果您想允许上传大于 4MB 的文件,请确保您在 web.config 中使用该元素增加了请求大小的默认值:

<system.web>
    <!-- 5MD (value is in KB here) -->
    <httpRuntime maxRequestLength="5120" />
    ...
</system.web>

如果您在 IIS7 上托管,则需要将其设置maxAllowedContentLength为相同的值(以字节为单位):

<system.webServer>
    <security>
        <requestFiltering>
            <!-- 5MB (value is in bytes here) -->
            <requestLimits maxAllowedContentLength="5242880" />
        </requestFiltering>
    </security>
</system.webServer>

就会话而言,您可能会发现following post有用。

于 2012-12-28T11:46:41.427 回答
1

Uploadify 上的文件大小限制管理 - Aspnet 基于 2 个不同的功能:

  • 服务器管理设置 IIS 可以接受的文件大小限制

  • 客户端管理设置浏览器可以发送的文件大小限制


服务器文件限制由 web.config 中的 maxRequestLength 参数设置

 <httpRuntime requestValidationMode="2.0"  maxRequestLength="102400"/>

这是一个 KByte 数值,所以 maxRequestLength="102400" 表示 100 MB 文件。


浏览器文件限制由 .uploadify() javascript inizialization 中的 sizeLimitparameter 设置

function uploadScript(sessionId, swfUrl, ascxUrl, cancelUrl) {
$('input[type="file"]').each(function (i) {
    $(this).uploadify({
        'uploader': swfUrl,
        'script': ascxUrl,
        'scriptData': { 'sessionId': sessionId, 'clientId': $(this).attr("id") }, // $(this).closest("div").attr("id") 
        'cancelImg': cancelUrl,
        'auto': true,
        'multi': false,
        'fileDesc': 'Tutti i file',
        'fileExt': '*.*',
        'queueSizeLimit': 90,
        'sizeLimit': 100000000,
        'buttonText': 'Scegli file',
        'folder': '/uploads',
        'onAllComplete': function (event, queueID, fileObj, response, data) { }
    });
});

}

sizeLimit 是一个字节值,因此要发送一个 100 MB 的文件,您必须考虑 100M = 1024*1024*100。

于 2013-12-04T10:31:39.220 回答