in reply to mod_perl, IE and DWIM
IE can be a real pain in situations like this, but I would guess that you are doing something wrong somewhere...
Have a read of "MIME Type Detection in Internet Explorer" for a primer on how IE figures out the content type.
In there you can see that Microsoft is trying to make up for mistakes that web developers and server administrators sometimes make. Of course if they would just follow the rules instead, then maybe these web developers would learn something instead. Instead, they frustrate developers who do actually know what they are doing.
Back to your problem. Is it possible that you are not returning the content type of text/html? Is your HTML document not properly formatted (does it start with <HTML> or a proper doctype? Or are you returning image data and leaving the content type as text/html? Try a very simple example that you know is correct and see what results you get.
#!/usr/bin/perl use CGI qw/:standard/; print header, start_html('Hello World!'), h1('Hello World!'), end_html;
- Cees
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: mod_perl, IE and DWIM
by hsmyers (Canon) on Jul 20, 2003 at 20:37 UTC | |
by liz (Monsignor) on Jul 20, 2003 at 20:47 UTC | |
by hsmyers (Canon) on Jul 20, 2003 at 20:56 UTC |