Our perl CGI scripts output response headers repeately which were inserted into the output html contents. a sample code: use strict; use CGI; $|=1; my $q = new CGI(); print $q->header("text/html"), $q->start_html("test"); print "aa"; print $q->end_html ; outputs...