bom, nao entendo nada de asp... entao gostaria de saber se alguem pode me ajudar passando esse codigo de php para asp...
<? $act=$HTTP_GET_VARS['act'];
// Starting the server...
if ($act=="start")
{
$output = shell_exec("./Server.exe start");
echo $output;
}
// Stopping the server...
elseif ($act=="stop")
{
$output = shell_exec("./Server.exe stop");
echo $output;
} ?>
Obrigado!