Hi,
If you are using Django framework,
request.POST.get('field_name') will give you the post value.
As to what to use to get the form in edit mode use,
editForm = UserProfileForm(instance=db.get(key))
To use in validation i.e postback,
postbackForm = UserProfileForm(data=request.POST)
Thanks,
Arun Shanker Prasad.
On Mar 25, 9:02 am, arnie <[email protected]> wrote:
> Does there exists a way of accessing the submitted form fields without
> creating an instance of the same like we do in non django based
> project like self.request.get(fieldname)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---