The information in this article applies to:
SYMPTOMSWhen data is posted from the Internet Explorer to a CGI application, the browser will display an hourglass. At some point, the browser will time out and display an error message indicating that it has done so. CAUSE
The behavior of the Internet Explorer was changed with Internet Explorer
4.0 to more closely reflect the HTTP specification (RFC 2068). This comment
is taken from RFC 2068.
Data posted to a CGI application is read by the CGI application from STDIN.
The gets() call above causes the CGI application to hang as it is dependant
on the CRLF.
RESOLUTIONA well-behaved CGI application will read exactly the number of bytes specified by the browser in the content-length header. The following code behaves correctly:
STATUS© Microsoft Corporation 1998, All Rights Reserved. Additional query words:
Keywords : iisscript |
Last Reviewed: August 30, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |