Re: FORMS help needed

2007-09-07 Thread AniNair
Thank you a lot. That was just what I wanted to know: about the url conf for get function. Thank you.. thank you... And is it similar in post? Once again, thank you a lot. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

Re: FORMS help needed

2007-09-07 Thread o.elias
Hi! Everything after the '?' in the url is post using the GET array. The regular expression of yor url config ignores these parameters and should simply be (r'^showuser/$)', show) to match on the url sent by the form. To get the GET-data sent by the form, use something like this: def show(reque

Re: FORMS help needed

2007-09-07 Thread AniNair
Hi... Thanks alot for the reply, I am a bit confused with this since i have been trying to get an idea for the last few hours,. I went through the documentation, Can u/anyone tell me how my urlconf should be like? I hav a simple text box with a submit button. I want to know how to get that value

Re: FORMS help needed

2007-09-06 Thread Boris Samorodov
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 d

FORMS help needed

2007-09-06 Thread AniNair
Hi.. 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