in reply to CGI::Session not saving with IIS
Try this:
my $self_url = $cgi->self_url() print qq{<a href="$self_url?session_id=$session_id">next page</a>\n}
And then use "next page" link. (Later on you should move the session ID to a cookie, but for texting the URL is fine).
Also please remeber to call ->flush() on your session object to actually store it to disk.
|
|---|