200902171035ASP 0107 Stack Overflow 堆疊溢位
造成原因為表單提交的資料超過限制了,導致IIS報告異常。
這是因為IIS預設中最大只能接受200K的內容。是造成的主因
在IIS 6,可在下列檔案修改資料上限
windows\system32\inesrv\下的metabase.xml
找到ASPMaxRequestEntityAllowed 預設為204800,即200K
In IIS5.0/4.0
Default Sizes in IIS 4 and 5
In IIS 4.0, the default maximum size of request line and header fields is 2 megabytes (MB).
In IIS 5.0, this is reduced to 128 kilobytes (KB).
In IIS 5.0 with Windows 2000 Service Pack 4 installed, this is reduced to 16 KB.
Reference:
http://support.microsoft.com/?scid=kb%3Ben-us%3B260694&x=17&y=12
解決辦法可參考:
http://support.microsoft.com/?scid=kb%3Ben-us%3B273482&x=16&y=6
http://blog.xuite.net/ben19770209/ASBeginner/8874063
回應