In my webserver program,
AResponse.SendRedirect does not always work. The target page is static page. The error message (from IIS) says,
HTTP Error 405.0 - Method Not Allowed
Page cannot be displayed as wrong method (HTTP verb) is being used.
nginx says the same error.
The static page itself is displayed without any problem.
And SendRedirect is also done correctly when I directly put it in the ActionRequest --- only through GET method.
It semms that after the web server has received something via POST method, then SendRedirect does not work.
What should I check, and what could be solutions?