POST pasti ada limitnya, karena kalau engga, nanti bisa di DOS attack. Ini contoh untuk ASP .Net. Untuk ASP, yah mirip2 lah.
Title Error: "System.Web.HttpException: Maximum request length exceeded" Problem When uploading large files in .NET, the following error may be received: System.Web.HttpException: Maximum request length exceeded... This error relates to ASP.NET's maxRequestLength setting. By default, ASP.NET limits requests to 4096 bytes (or 4 MB), as explained in this Microsoft KB article: http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626. This error will occur if an upload is larger than 4 MB and you have not adjusted the maxRequestLength setting for your application in web.config or machine.config. Solution FileUp Standard Edition can accept uploads of up to 4 gigabytes. FileUp Enterprise Edition can accept unlimited size uploads. However, when using the product in .NET, it is important to configure the application settings to make sure ASP.NET doesn't block the large uploads before FileUp can process them. The maxRequestLength parameter is set in the httpRuntime section of web.config (or machine.config). maxRequestLength is set in bytes. So, for example, if you want to allow uploads of 100 MB, you would set maxRequestLength to 102400. There are some other settings in httpRuntime which you may want to modify for large uploads. Below is an example httpRuntime element. Please adjust the settings according to the needs of your application. <httpRuntime executionTimeout="1200" maxRequestLength="102400" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" /> For more information about various ASP.NET application settings which apply to large uploads, see the FileUpEE or FileUpSE documentation: FileUpEE - Large Uploads in ASP.NET: http://support.softartisans.com/docs/fileupeev4/doc/dotnet/aspdotnet_largeuploads.asp FileUpSE - large uploads in ASP.NET: http://support.softartisans.com/docs/fileupv4/prog_g_dotnet_largeuploads.htm On 6/7/05, ronotogaiqbal <[EMAIL PROTECTED]> wrote: > alooo .... minta bantuanny donk .... > say lagi bikin sebuah ASP yg tugasnya nulis xml ke file text. xml-nya > ini buanyuak banget. la waktu dijalanin di win XP ga masalah, waktu di > win 2000 koq keluarnya semacem "variable POST over limited". saya pake > POST (perasaan kan ga ada batesnya). ada yg pernau nemuin kasus serupa > ga? tolong donk kl ada yg tau solusinya ... urgent soalnya .... > makasih banyak yah sebelumnya ..... > > > > > > ---------------------------------------------------------- > Komunitas MasterWeb Indonesia http://www.master.web.id > ---------------------------------------------------------- > MWN, Masternya WEBHOSTING di Indonesia, Indo/USA Servers, > Customer Support 24 jam http://www.masterwebnet.com > ---------------------------------------------------------- > WebDevelopment,Designing/Programming http://www.dlanet.com > ---------------------------------------------------------- > Yahoo! Groups Links > > > > > > > ---------------------------------------------------------- Komunitas MasterWeb Indonesia http://www.master.web.id ---------------------------------------------------------- MWN, Masternya WEBHOSTING di Indonesia, Indo/USA Servers, Customer Support 24 jam http://www.masterwebnet.com ---------------------------------------------------------- WebDevelopment,Designing/Programming http://www.dlanet.com ---------------------------------------------------------- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/milis-masterweb/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
