Can only reproduce this issue on Google App Engine Server, not on my development server.
Only when I copy-paste a part of web page to the <textarea>
.
I searched Google App Engine forum and found two related posts, but still didn't figure it out. Can somebody give me more hint? Thanks!
Here is my code:
HTML
< form method = "post" action = "{% if action %}{{ action }}{% endif %}" enctype = "multipart/form-data" accept - charset = "UTF-8" >
< textarea name = "textbox" id = "textbox" rows = "3" cols = "50" wrap = "soft" >
Python
t1 = self.request.get("textbox")
t2 = self.request.POST["textbox"]
logging.info("request get: %s, %s" % (t1, t2))
Related Posts: http://code.google.com/appengine/forum/python-forum.html?place=topic%2Fgoogle-appengine-python%2FOYfn9tXncUk%2Fdiscussion