26 Jan
2004
26 Jan
'04
6:39 p.m.
Justin Robertson wrote at 2004-1-26 14:05 +0000:
Can anyone tell me why the first script is returning None for request.get('argClsRecId')?
Script: request = container.REQUEST response = request.RESPONSE print request.QUERY_STRING print request.get('argClsRecId') return printed
Request URL: http://localhost:8080/scripts/actAddSubjectReport?argClsRecId=159&argStuRecI...
Output: argClsRecId=159&argStuRecId=2288 None
That's really interesting... "request.get" actually looks in "request.others" (a dict). Maybe, you print it as well. -- Dieter