In Windows2003, the size of ASP-uploaded attachments is limited to 200 KB. Therefore, the following error message is often displayed: The request object error 'asp 0104: 8080 '.
Solution: change the size of ASP files uploaded by IIS 6.0 of win2003 to kb, and upload aspx filesProgramNo effect. In iis6.0, the default settings are especially strict and secure. Up to 204,800 bytes can be transferred, which can minimize attacks caused by too many loose timeouts and restrictions. For security reasons, IIS 6 sets the default maximum request value to 200 KB (that is, the maximum data submission quota is 200 Kbyte and 204800 bytes ). (This restriction is not available in versions earlier than IIS 6.0 ). To solve this problem, follow these steps:
1. Stop all websites (including FTP servers) in the Internet Information Service (IIS) manager;
2. Choose Start> Administrative Tools> services to disable the IIS Admin Service;
3. Find metabase in C:/Windows/system32/inetsrv. XML, open, and find aspmaxrequestentityallowed to change it to the value you need (in bytes) (204800 by default, that is, 200 k );
4. Choose Start> Administrative Tools> services, and then restart the IIS Admin Service.
In this way, you can upload an attachment larger than K in ASP.