Hi, Can Somebody help me?This is my perl scrip:#!/usr/local/bin/perl use CGI;use CGI::Carp "fatalsToBrowser";use DBI;use strict;my $q = new CGI;my $fname;my $sql;my $ordnum=$q->param('ordernum');my $usertype=$q->param('usertype');my $starter =<<STARTER;<html><head><title>綪扳虫</title><meta http-equiv="content-type" content="text/html;charset=big5"><Script Language="JavaScript">window.moveTo(0,0);window.resizeTo(screen.width,screen.height);</script></head><body>STARTERmy $header_details=<<HEAD_DETAIL;<FRAMESET ROWS="35%,55%,10%"><FRAME SRC="orderheader.pl?ordnum=$ordnum&usertype='$usertype'" NAME="Orderheader" SCROLLING=AUTO framespacing=0 marginheight=0 marginwidth=0 NORESIZE><FRAME SRC="orderdetails.pl?ordnum=$ordnum&usertype='$usertype'" NAME="Orderdetails" SCROLLING=AUTO><FRAME SRC="orderdetails.pl?ordnum=$ordnum&usertype='$usertype'" NAME="Orderdetails" SCROLLING=AUTO></FRAMESET>HEAD_DETAILprint $starter;print $header_details;print $q->end_html();exit(0);it was working before but it suddenly printed out the following in my IE:<FRAMESET ROWS="35%,55%,10%"> <FRAME SRC="orderheader.pl?ordnum=87655&usertype=''1''" NAME="Orderheader" SCROLLING=AUTO framespacing=0 marginheight=0 marginwidth=0 NORESIZE> <FRAME SRC="orderdetails.pl?ordnum=87655&usertype=''1''" NAME="Orderdetails" SCROLLING=AUTO> <FRAME SRC="orderdetails.pl?ordnum=87655&usertype=''1''" NAME="Orderdetails" SCROLLING=AUTO>
</FRAMESET>

</body>
</html>Can some one help me? I have no idea what's going on?Sam

Reply via email to