Tony
|
| Posted: 02/17/2002, 6:25 PM |
|
Any help would be appreciated. I am trying to keep my application so that it is all generated withing cc. Is there a way to click on a link withing generated cc and execute a .bat file or other executable file? thank you.
|
|
|
 |
alessandro
|
| Posted: 02/23/2002, 2:29 AM |
|
if you use a php the code is simple:
<---->
exec("yourbatcommand whith params",$out);
<---->
if you want read the output $out (array)
<---->
foreach($out as $o) {
$o contain the sequence of output line
}
<---->
|
|
|
 |
Tony
|
| Posted: 02/25/2002, 7:10 AM |
|
Thanks Alessandro! Do you have an idea of how to do it with asp
|
|
|
 |
|