When something changed, I want refresh iframe page and pass some values to
the iframe

such as when addMethod(a, b) is invoked, the iframe will be refreshed and
use the parameter a and b

def addMethod(a, b)
    //need refresh the iframe and pass the value a and b to the iframe
   ????

I know I can refresh the page with value a and b.
    t = get_template("New.html")
    c = Context({'a': a, 'b':b })
    return HttpResponse(t.render(c)):

--~--~---------~--~----~------------~-------~--~----~
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