[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]
