in reply to Odd form submit behavior in IE to a Perl CGI under IIS 6.0

If I were you, I'd try to sniff traffic from the browser to the server and back, to see if the request is sent and what is it like. You could use a full-blown packet sniffer, like Ethereal with WinPCap, or a simple port redirector with logging (probably POE has something like this in its cookbook). I'd go with the first, but in Win32 you could (er - will) have problems sniffing packets in local, so be sure that the browser and the application are in distinct machines.

Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')

Don't fool yourself.
  • Comment on Re: Odd form submit behavior in IE to a Perl CGI under IIS 6.0

Replies are listed 'Best First'.
Re^2: Odd form submit behavior in IE to a Perl CGI under IIS 6.0
by Errto (Vicar) on Jun 03, 2005 at 03:06 UTC
    If you're going this route I highly recommend HTTP::Proxy. It has saved me hours of headaches, and it's remarkably simple.