我已经从这个博客http://geographika.co.uk/setting-up-python-on-iis7完成了所有工作。我只使用 Python 2.6(不是 Django)并且想在我的 python 脚本中获取查询字符串参数。
例如,在执行过程中http://localhost/MyApp/program.py?par=test
如何在我的脚本 program.py 中获取值测试:
from Http import *
def Request():
Header("Content-type: text/html")
Write(get_param("par"))
谢谢。