Correction to last message:

def intropage:
        query="some default value"
        page="1"      #(default to page 1)
        if "query" in request.GET:
                query=request.GET("query")
        if "page" in request.GET:
                page=request.GET("page")
        #go get the data or whatever you need to do...
        return render_to_response("firstpage.html",locals())  #or
whatever you
need...

(Can't you edit these posts after youve posted them?)
--~--~---------~--~----~------------~-------~--~----~
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