I personally feel you should look into doing the post via Ajax, pass
your form field values into an array and unpack the values in your
view:

ie:
function AjaxSubmitForm(formdata){
  $.post('/ajax/some-view/'+formdata+'/', function(data){
        if(data == 'done'){
          d.body.innerHTML = "This is a test";
        }
  });
}

JSON would be a better option but this will work well. See more at:
http://docs.jquery.com/Ajax
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to