in reply to How redirect the page in CGI programming?
You don't have to use the CGI module for everything. I personally use it only for parsing of the cgi parameters, but rarely for forming a response.
print "Status: 302 Found\n", "Location: http://www.perlmonks.com/\n\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How redirect the page in CGI programming?
by merlyn (Sage) on Jun 21, 2005 at 11:42 UTC | |
by ambrus (Abbot) on Jun 21, 2005 at 11:54 UTC |