On 1 March 2013 17:24, JAGANADH G <jagana...@gmail.com> wrote:
> Hi ,
>
> I was trying to write a url pattern for URL like this
> /my_page/?btn=view_page&sel=Profile
[...]

The "?btn=view_page&sel=Profile" is not part of the
URL, but is a query string. The URL is simply /my_page
Within the Django view, you can get the query string
parameters with, e.g.,
  request.GET.get( 'btn' )

Regards,
Gora
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to