I am experiencing problems using the POST method on a form on a web page.
To replicate the issue for debugging purposes, I have created a web
page (test.asp) which contains ONLY the code below:
<form name="TestForm" enctype="multipart/form-data"
action="test2.asp" method="POST">
<input type="file" name="attach1">
<input type="submit">
</form>
A second page, (test2.asp) receives the posted data, but for testing,
simply looks like this:
<html>
<head></head>
<body>This is test2.asp</body>
</html>
When test.asp is loaded, if I browse to a file which is greater in
size than approx 98,400 bytes and click to submit the query, I receive
a 'Page Cannot Be Displayed' error for test2.asp. If the file is
smaller than approx 98,400 bytes, everything works fine.
Why is this happening? Any assistance gratefully appreciated.
For my web server I am using IIS 5.1 as provided with Windows XP Professional.
Regards, JEREMY |