明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

在Form域中Post大于100K的數(shù)據(jù)

[摘要]當(dāng)表單發(fā)送的數(shù)據(jù)量很大時(shí),就會(huì)報(bào)錯(cuò)。查閱MSDN了解到,原因是微軟對(duì)用Request.Form()可接收的最大數(shù)據(jù)有限制,IIS4中為80K字節(jié),IIS5中為100K字節(jié)。   下面是微軟提供的幾個(gè)解決方法:1、用Request.BinaryRead 代替 Request.Form方法 來解析表單...

    當(dāng)表單發(fā)送的數(shù)據(jù)量很大時(shí),就會(huì)報(bào)錯(cuò)。查閱MSDN了解到,原因是微軟對(duì)用Request.Form()可接收的最大數(shù)據(jù)有限制,IIS4中為80K字節(jié),IIS5中為100K字節(jié)。
  下面是微軟提供的幾個(gè)解決方法:

1、用Request.BinaryRead 代替 Request.Form方法 來解析表單數(shù)據(jù);

2、使用文件上傳方案,比如:Microsoft Posting Acceptor;

3、由于102399字節(jié)的限制是對(duì)每個(gè)表單元素的,所以在提交時(shí),把表單元素內(nèi)容大于102399的分隔成多個(gè)表單元素來提交。

下面為示例代碼:(微軟提醒:下面代碼不一定完全適用特定的需要,不對(duì)使用這些代碼產(chǎn)生的后果負(fù)責(zé)。

<FORM method=post action=LargePost.asp name=theForm onsubmit="BreakItUp()">
<Textarea rows=3 cols=100 name=BigTextArea>A bunch of text...</Textarea>
<input type=submit value=go>
</form>
<SCRIPT Language=JavaScript>
function BreakItUp()
{
  //Set the limit for field size.
  //如果內(nèi)容有中文的字符的話,可以設(shè)置為:51100
  var FormLimit = 102399
  //Get the value of the large input object.
  var TempVar = new String
  TempVar = document.theForm.BigTextArea.value
  //If the length of the object is greater than the limit, break it
  //into multiple objects.
  if (TempVar.length > FormLimit)
  {
    document.theForm.BigTextArea.value = TempVar.substr(0, FormLimit)
    TempVar = TempVar.substr(FormLimit)
    while (TempVar.length > 0)
    {
      var objTEXTAREA = document.createElement("TEXTAREA")
      objTEXTAREA.name = "BigTextArea"
      objTEXTAREA.value = TempVar.substr(0, FormLimit)
      document.theForm.appendChild(objTEXTAREA)
     
      TempVar = TempVar.substr(FormLimit)
    }
  }
}
</SCRIPT>
     
 

接受數(shù)據(jù)頁主要代碼:

<%
Dim BigTextArea
For I = 1 To Request.Form("BigTextArea").Count
  BigTextArea = BigTextArea & Request.Form("BigTextArea")(I)
Next
%>