On Thu, 06 Sep 2007 22:55:38 -0700 AniNair wrote: > I am using django 0.97 pre with python 2.5.1. I have been trying to > learn this but i am having trouble with forms. What I want is to > submit data in one page and do calculations with it and return the > result in other page. I managed to do it using cgi, but can anyone > tell me how to get data in django? I should I use get_list_or_404()? I > have my url conf as
> from django.conf.urls.defaults import * > from dbp.users.views import show, get_id, showall > urlpatterns = patterns('', > (r'^users/', showall),(r'^showuser/([A-Za-z]+)', show), > ) > The url on submitting is http://localhost:8000/showuser/?id_user=Ani > I get a page not found error saying > The current URL, showuser/, didn't match. > please advice. Thanking you in advance Seems that you may be interested at http://www.djangoproject.com/documentation/tutorial03/ : "Note that these regular expressions do not search GET and POST parameters, or the domain name. For example, in a request to http://www.example.com/myapp/, the URLconf will look for /myapp/. In a request to http://www.example.com/myapp/?page=3, the URLconf will look for /myapp/." WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---