python - request.keys() not having passed params when containg # in it -
i sending request python server query string having
"http://192.168.4.106:3333/xx/xx/xx/xx?excelreport**&detail=&#tt**=475&dee=475&empi=&qwer=&start_date=03/01/2014&end_date=03/13/2014&searchvar=0&report_format=d" my query string containing 1 character # when doing request.keys() in server not showing me params passed.its working other special character??
i stuck in problem quite long time??
i using zope framework?? please suggest??
the # character cannot used in query string.
you should encode %23 , decode when parse string.
the reason behind can found @ w3 site
Comments
Post a Comment