Make yourself familiar with the django documention pageā€”if you know
where to look for stuff there, you'll find it to be a very handy
resource. http://docs.djangoproject.com/en/dev/

> 1: How can I go to next page when i submit the data in index page(log
> in page)

http://docs.djangoproject.com/en/dev/ref/request-response/#django.http.HttpResponseRedirect

> 2: How can I link a page with a text. so that when I click on the text
> It will so the page I want.

This sounds like you're trying to just put a link on a page? of the
format <a href="_url_here_">Click this link</a>? The following will
show you the best way to generate the url for the "_url_here_" part:

http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url
You should really give this a read too, naming url patterns can be
very convenient: 
http://docs.djangoproject.com/en/dev/topics/http/urls/#naming-url-patterns

Finally, you should really read the content provided under "First
Steps" on the doc page: http://docs.djangoproject.com/en/dev/#first-steps
Especially the intro overview 
http://docs.djangoproject.com/en/dev/intro/overview/#intro-overview
and then the tutorials

>
> Can any one give some tips (which may face silly issues while create
> simple web application)
>
> Please help me to for gaining knowledge about django framework.
>
> many many thanks in advance for help!
--~--~---------~--~----~------------~-------~--~----~
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