I want to post some long text with many tables from a word.doc file, got an error mesage:
Request object error 'ASP 0107 : 80004005'Stack Overflow
/forum/new_post.asp, line 157
The data being processed is over the allowed limit.
After internet search , I found microsoft support says:
The size limit of each form field that is retrieved in the Request object is 102,399 bytes. The error occurs when you exceed this limit. To resolve this problem, use one of the following methods:- Instead of reading form variable values with the Request.Form collection, useRequest.BinaryRead (Request.TotalBytes), and parse the form values from the output of Request.BinaryRead.
Can WWF change codes as MS mentioned to solve the problem? Since 102,399 bytes may be large enough for pure texts, but not enough for complex tables .
Thanks!