I have two handlers in webapp.WSGIApplication for two forms in a django template, one of the handler works on dopost but the other one goes to blank page. Why is this so?
+1
A:
Some error or typo somewhere in your code or configuration, it's impossible to say much more without seeing those files of course.
Alex Martelli
2009-07-03 19:57:23
('/changeprofile', ChangeProfileHandler),<form action="/changeprofile" method="post">class ChangeProfileHandler(webapp.RequestHandler):these are the three pieces of line that should work
dhaval
2009-07-03 20:02:38
i was doing dopost instead of post, thx for pointing it out
dhaval
2009-07-03 20:10:14