mc_pandey
08-25-2010, 08:29 AM
Hi ,
In the HTML form below i want to first execute the CGI script (test.cgi) given in the action parameter and then redirect to some other page.How can i do that ?
I tried
print "Location: http://www.sitepoint.com/forum/showthread.php?t=540311\n\n";
in the CGI script but it is just printing this url.
<form action="test.cgi" method="post">
<h1> Pulling Testcases From TIMS </h1>
<table border="1">
<p> Please Enter the Parent Folder ID <p>
<tr>
<td><input type="text" name="testcase" value="" maxlength="100" /></td>
</tr>
</table>
<br>
<input type="submit" value="Submit"/>
</form>
Thanks
Manish
In the HTML form below i want to first execute the CGI script (test.cgi) given in the action parameter and then redirect to some other page.How can i do that ?
I tried
print "Location: http://www.sitepoint.com/forum/showthread.php?t=540311\n\n";
in the CGI script but it is just printing this url.
<form action="test.cgi" method="post">
<h1> Pulling Testcases From TIMS </h1>
<table border="1">
<p> Please Enter the Parent Folder ID <p>
<tr>
<td><input type="text" name="testcase" value="" maxlength="100" /></td>
</tr>
</table>
<br>
<input type="submit" value="Submit"/>
</form>
Thanks
Manish