怎樣在IIS中寫Python的CGI指令碼

來源:互聯網
上載者:User
 

1。安裝好Python;
2。配置IIS:
        a.開啟管理工具-〉Internet資訊服務;
        b.在網站屬性上右鍵,進入屬性設定;
        c.轉到主目錄頁,進入應用程式配置;
        d.添加一個映射:可執行檔寫:C:/Python23/Python.exe ”%s” %s
            注意Pythong的路徑要指向你安裝Python的位置,同時注意參數間的空格。
            副檔名寫:.py
            動作限制為:GET,HEAD,POST
        e.選中指令碼引擎,選中檢查檔案是否存在;
        f.一路確定完成配置。
3。編寫CGI指令碼:

import cgi                                                                 #倒入cgi模組

print 'Content-Type: text/html'                                   #必須,輸出HTML文檔頭
print # Blank line marking end of HTTP headers        #必須,文檔頭必須以空行結束

cgiParameters = cgi.FieldStorage()                            #取得Post或Get過來的參數集    

# 檢查看是否是我們需要的參數
if not (cgiParameters.has_key("name") and cgiParameters.has_key("address")):#如果不是輸出form,要求填寫name和address
    print "<form action='' method='post' name='form'><input name='name' id='name'><input name='address' id='address'><input type='submit' value='submit'></form>"
    print "Please fill in the name and address fields."
else:                                                                           #如果是我們要求的參數,輸出參數內容
    print "<p>name:", cgiParameters["name"].value
    print "<p>address:", cgiParameters["address"].value

4。在IIS裡寫Pythong的CGI指令碼,就是這麼簡單。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.