in reply to Cookie problem

From the CGI::Application docs:

Calling header_props will clobber any existing headers that have previously set.

So just put them together in one call

my $redirect_url=$this_url.'?rm='.$redirectTo; $self->header_type('redirect'); $self->header_props(-url => $redirect_url, -cookie=>[$kpi_cookie] );

-derby

Replies are listed 'Best First'.
Re^2: Cookie problem
by bar10der (Beadle) on Aug 10, 2004 at 12:20 UTC
    Derby, Thanks for your help. It works.