posts - 22, comments - 5, trackbacks - 0, articles - 11

主要原因是AspMaxRequestEntityAllowed 缺省的内容长度 是 204,800 bytes.

在修改之前请备份你的metabase(这一点非常重要).

打开Command prompt 输入 

1. cd c:\inetpub\adminscripts

接着修改size :最大为1073741824

2. cscript adsutil.vbs set w3svc/ASPMaxRequestEntityAllowed [size]

[size max value 1,073,741,824 bytes.]


This article was previously published under Q327659
Important This article contains information about editing the metabase. Before you edit the metabase, verify that you have a backup copy that you can restore if a problem occurs. For information about how to do this, see the "Configuration Backup/Restore" Help topic in Microsoft Management Console (MMC).



When you use an Active Server Pages (ASP) request to upload a large file to a computer where Microsoft Internet Information Services (IIS) 5.0, Microsoft Internet Information Services (IIS) 5.1, or Microsoft Internet Information Services (IIS) 6.0 is installed, the upload may fail. You may also receive a 403 error response or an error message that is similar to one of the following:

Error message 1

Request object error 'ASP 0104 : 80004005' Operation not Allowed :

Error message 2

007~ASP 0104~Operation not Allowed

When you post lots of form data to an ASP page, you may receive an error message that is similar to the following:

Error ’80020009’ Exception occurred

Additionally, the file upload may fail when you use the Response.binaryWrite method.

You experience one or more of these symptoms even though the same file upload worked in earlier versions of IIS.

This issue occurs if a Content-Length header is present and if the Content-Length header specifies an amount of data that is larger than the value of the AspMaxRequestEntityAllowed property in the IIS metabase. The default value for the AspMaxRequestEntityAllowed property is 204,800 bytes.

Note This metabase property was first included in the October 2002 cumulative update for IIS. This metabase property is included in a default installation of IIS 6.0.


Warning If you edit the metabase incorrectly, you can cause serious problems that may require you to reinstall any product that uses the metabase. Microsoft cannot guarantee that problems that result if you incorrectly edit the metabase can be solved. Edit the metabase at your own risk.

Note Always back up the metabase before you edit it.

To resolve this issue, modify the value in the AspMaxRequestEntityAllowed property to set the maximum number of bytes that are permitted in the entity body of an ASP request. To do this, follow these steps:

  1. At a command prompt, type the following command, and then press ENTER:
    cd drive:\inetpub\adminscripts
    Note In this command to change folders, drive is a placeholder for the hard disk where IIS is installed.
  2. At a command prompt, type the following command, and then press ENTER:
    cscript adsutil.vbs set w3svc/ASPMaxRequestEntityAllowed size
    Note In this command, size is a placeholder for the largest file size upload that you want to allow. The maximum value is 1,073,741,824 bytes. Set this value to the lowest possible value that allows for the functionality that you want.
  3. At a command prompt, type the following command, and then press ENTER:
    iisreset
只有注册用户登录后才能发表评论。