views:

58

answers:

1

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
('/changeprofile', ChangeProfileHandler),<form action="/changeprofile" method="post">class ChangeProfileHandler(webapp.RequestHandler):these are the three pieces of line that should work
dhaval
i was doing dopost instead of post, thx for pointing it out
dhaval