• 締切済み

大きな画像の表示でエラー

IIS5で動画を読み込んで表示していたASPを IIS6に移して動作させたところ、4Mbytesを超えたファイルを 読み込ませると以下のようなエラーが出てしまいます。 IIS6で出力サイズの制限を受けているようなのですが 何処でこの制限が掛かっているのかが、わかりません。 どなたかお教えください。 **エラー*************** Response オブジェクト, ASP 0251 (0x80004005) Execution of the ASP page caused the Response Buffer to exceed its configured limit. /test_mpg.mpeg, line 7 ***************** ***ソース******** <% @Language=JScript%> <% Response.Expires = 0 %> <% Response.ContentType = "video/mpeg"; var a = Babaq.BinaryRead("C:\\mpeg\\sample.mpg"); Response.BinaryWrite(a); %> ******************

みんなの回答

noname#26224
noname#26224
回答No.1

Machine.configの<httpRuntime>セクション、maxRequestLength 属性を変更 もしくは Web.configのmaxRequestLengthを変更 たとえば<httpRuntime maxRequestLength="8192" />で8MまでOK

関連するQ&A