Not getting all keys in FieldStorage (Multipart form data)

Jay O'Connor joconnor at nets.com
Wed Jun 4 10:45:44 EDT 2003


In article <3EDDF63D.88366C54 at hotmail.com>, "Alan Kennedy"
<alanmk at hotmail.com> wrote:

> Max M wrote:
> 
>> Here you are mixing stuff:
>> 
>> action="%s/admin/additem.py?bookid=%s&image=yes"
>> 
>> you should not pass parameters as part of the action. Do it as a hidden
>> field instead.
> 
>> I think it is undefined what happens in this case. Most likely the
>> browser ignores the parameteres in your action, and just add those from
>> the form itself.
>> 
>> Anyway it isn't legal.
> 
> I don't think the specs specify either legality or illegality. On
> reading the (supposedly) definitive section of the HTML 4.01 spec on
> form submission,
> 
> http://www.w3.org/TR/html401/interact/forms.html#submit-format
> 
> it says:
> 
> "The action attribute may take two values:
> 
>  o get: With the HTTP "get" method, the form data set is appended to the
>  URI
> specified by the action attribute (with a question-mark ("?") as
> separator) and this new URI is sent to the processing agent.
>  o post: With the HTTP "post" method, the form data set is included in
>  the body
> of the form and sent to the processing agent."

FWIW, I've seen problems that web servers sometimes have a limit on the
length of the URL they will accept.  I found this out accidentally when I
left "method=POST" off of a form so it tried to send it as a GET and
there was too much data on the line.  



-- 
Jay O'Connor
http://www.r4h-music.com

"God Himself plays the bass strings first,
when He tunes the soul"




More information about the Python-list mailing list