Generally, when you are redirecting, you usually aren't returning an
HTTP status code of 200. Redirecting implies a status code in
[300,400). You might want to take a look at the HttpResponse
subclasses:
http://docs.djangoproject.com/en/dev/ref/request-response/#httpresponse-subclasses

However, if you are doing login stuff, you also might take a look at
Django's auth framework.
http://docs.djangoproject.com/en/dev/topics/auth/

On Feb 9, 9:00 pm, Keyan <keyan...@gmail.com> wrote:
> I am new to django!! working in windows. I have created a login page
> and validating in view.py file
> code wil go like this
>       for x in log:
>         if u_name ==x[1]:
>               return render_to_response('index.html',{"log":log})
>         else:
>               return render_to_response('wrong.html')
>
> here if the u_name doesnt match means it wil go to else part and call
> wrong.html file.  but its not working for me..  it showing following
> error
>
>                                   "didn't return an HttpResponse
> object"

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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