laspal schrieb:
> So my problem is right now  I am sending the mailing_list in the url.
> which is not the right way of doing it as I might have more then 100
> mail id in my url.
>
> So I wanted to know how can I solve this problem???
>   
Hi,

you could sent the IDs as GET parameter: 
http://.../myview?mail_id=1&mail_id=2 

In myview:
  request.GET.getlist('mail_id') --> ['1', '2', ...]

 HTH,
    Thomas

-- 
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to