Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: CGI::Application and start_multipart_form stumper

by cees (Curate)
on Dec 06, 2005 at 18:55 UTC ( [id://514596]=note: print w/replies, xml ) Need Help??


in reply to CGI::Application and start_multipart_form stumper

Are you sure you are not just getting bit by the sticky fields in CGI.pm?

$q->param('rm', 'save_mode'); # hack?

If 'rm' already has a value, then CGI.pm will not overwrite it unless you also pass the -override => 1 option.

$q->param(-name => 'rm', -value => 'save_mode' -override => 1);

You can easily check this by looking at the generated HTML and making sure the runmode is what you expect it to be.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-19 21:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found