in reply to Where to call script

change the form tag's to action="newtask.perl" or similar.
Create the new script and do what needs to be done in it.
If the confirm.asp is also in Perl, just require it in the new script.
If it isn't, call it with redirection - see CGI and look for the redirect-method.

Sören

Replies are listed 'Best First'.
Re: Re: Where to call script
by matija (Priest) on Mar 10, 2004 at 13:24 UTC
    Redirecting the request will only work if it is a GET request, but not if it's a PUT request.

    If a PUT request is needed, the best way is to use LWP::UserAgent to do another PUT request in the background.