http://qs321.pair.com?node_id=316833


in reply to Re: Re: Cookies
in thread Cookies, how can you set one if it must be done before the header?

IE requires the path be set in your cookie..

my $cookiename = cookie( -name => 'cookie', -value => 'loggedin', -expires => '+1h' -path => '/', );

cheers,

J