in reply to Re: Re: Re: Where to call script
in thread Where to call script

Is this correct? I have textfield info I have to pass here such as a Comments field.
use CGI; use strict; #mail stuff here redirect('http://webserver/actionpage.asp?personName?email?comments);

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Where to call script
by NetWallah (Canon) on Mar 10, 2004 at 16:25 UTC
    You are passing variable NAMES, but not their Values.

    If you want to di it via redirect, do something like:

    redirect ("http://your.url.here.com?Name1=value1&name2=value2")

    Personally, I dislike that style because it exposes the values, and allows users to tamper with them. I would prefer info passing via session variables (for asp pages), or via a POST for CGI.