How to change IIS 6.0 Configurations by editing Metabase.xml
There are many settings in IIS. Starting from version 6.0, the settings are stored in a text file called metabase.xml under %SystemRoot%\System32\Inetsrv. If you configure the IIS server such that directly editing this file is allowed, you can make changes of the behaviors of the IIS server by just changing the values in this XML file.
For example, there is a 4 MB limitation on Response Buffer. That is, is you try to use Response.BinaryWrite to download contents to the user, 4 MB is the default maximum you can reach. However, if you change the value ASPBufferingLimit in metabase.xml, you can make the value suitable for your system.
Please note this Buffering limitation is different from the file upload limitation we mentioned in one of the earlier articles, which is controlled by maxRequestLength in Web.Config.
For details, please refer to: http://www.windowsdevcenter.com/pub/a/windows/2004/07/13/iis_metabase.html
