Hi,
I configured Perl in Weblogic 6.0.it is working fine but redirect()
method is not working.When i tried by the following
#!/usr/local/bin/perl5 -w
#!/usr/bin/perl
use strict;
use CGI;
use DBI;
my $q = new CGI;
print <<END_OF_PAGE;
Content-type: text/html
<html>
<body>
<p><font color="Green" size="20">$error_msg</font></p>
</body>
</html>
END_OF_PAGE
print $q->redirect("http://pc271:7001/login_submitted.htm");
exit 0;
getting
Status: 302 Found Uri: http://pc271:7001/login_submitted.htm
I tried relative URI also.
Could you solve this issues?.
Thanks In advance
Manikandan