-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Milestone
Description
When I try to read a non empty request parameter with method POST, in my ASP application, I always have the error:
erreur '80004005'
/test.asp, ligne 4
I can avoid this error by setting the SecStreamInBodyInspection to On, but it is not a very useful solution as it slow down a lot the uploads.
Here is a test page
<html>
<head></head>
<body>
Read : <%=Request("test")%>
<form method="post">
<input type="text" name="test">
</form>
</body>
</html>
If you load this page it works fine.
If you enter no value in the input and press enter, it still works fine.
If you enter a value in the input and press enter, you will have the error.
If you modify the form method from POST to GET, no more error.
Environment :
Windows 8, IIS8, ASP 32 bits