I'm testing gae/python.... i have a very very simple issue on HTTP
Request..... (what i can't solve yet..)
everything is working fine.... (http request is handled on MICLASE,
etc......) except what if i enter "la niƱa" on descri textbox.
(index.html) i get "la nia" on web browser after submit....
this happen on production env. with both (GET / POST) methods....... i
think this is an encoding issue...... (but i can't know how to fix
it)...
if i use GET method my web browser (chrome) is sent "descri=la+ni%F1a"
as query string (what i think is correct).

can anyone explain it ?

index.html:
<html><body><form action="url_to" method="post"><input type="text"
name="descri"><input type="submit"></form></body></html>


class MICLASE(webapp.RequestHandler):
 def get(self):
  p_descri=self.request.get('descri')
  self.response.out.write(p_descri)


-----------------------------------------------------------------------------

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to