Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Re: IE wont post after initial request

by zakb (Pilgrim)
on Jun 12, 2002 at 15:50 UTC ( [id://173882]=note: print w/replies, xml ) Need Help??


in reply to Re: IE wont post after initial request
in thread IE wont post after initial request

That should be:

<meta http-equiv="Pragma" content="no-cache">

Chances are, for this to work properly in all browsers, you'll also need:

<meta http-equiv="Cache-Control" content="no-cache"> <meta http-equiv="Expires" content="0">

Note that these tags will most definitely not work unless they are between your <head> and </head> tags. See here for some useful information.

Replies are listed 'Best First'.
Re: Re: Re: IE wont post after initial request
by BigJoe (Curate) on Jun 12, 2002 at 15:55 UTC
    I tried this and it still doesn't work after the first post
    #!/usr/bin/perl -wT use strict; use CGI; my $q = new CGI; print $q->header; print <<EODUMP; <html> <head> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-Control" content="no-cache"> <meta http-equiv="Expires" content="0"> </head> <body> <form method=post> <input type=text name=foo><br> <input type=submit value=Submit> </form> EODUMP #if(defined($q->param('foo'))){ print $q->param('foo'); #} print "</body></html>";


    --BigJoe

    Learn patience, you must.
    Young PerlMonk, craves Not these things.
    Use the source Luke.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://173882]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-03-28 21:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found