Hi Mark,
It does not show any headers at this point. I did it and checked the logs - the first thing it shows is the <html> tag. CGI app puts the headers on later in the process. I whacked into CGI app and put the same call in just before it dumps it out. The header I got was the typical content-type: text/html<cr><cr> looks good to me... -----Original Message----- From: mark [mailto:[EMAIL PROTECTED]] Sent: Monday, September 24, 2001 2:49 PM To: Chmura, William B. Cc: cgiapp Subject: Re: [cgiapp] Netscape 4.08 problem with my output [EMAIL PROTECTED] wrote: > > For some reason, with Netscape, the results are displayed as HTML CODE > (not rendered). If I call it directly from a browser, I get the same > thing - so I do not think it is a frames thing. If I take the resulting > code and save it to a file and serve it from a web server - the netscape > browser will render it correctly - so I suspect its not an HTML code > problem. Bill, Try printing the output you are sending to the browser to STDERR just before you would send it. If you are using HTML::Template, then you might have something like this in your code: warn $tmpl->output; # go ahead and return normally return $tmpl->output; Look at all the headers before <HTML> and see if they look reasonable. If you can't figure it out, try posting that snippet of the output here. -mark --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
