使用通用IIS命令行管理工具:
C:\Windows\System32\inetsrv\appcmd.exe 查看现有站点
1 appcmd list site 添加一个新站点
1 appcmd add site /name:"My New Site" /id:2 /bindings:http/*:81: /physicalPath:"c:\inetpub\mynewsite"
/name …
如何正确使用static、class、abstract方法
####How methods work in Python A method is a function that is stored as a class attribute. You can declare and access such a function this way: ####方法在Python中是如何工作的 方法就是一个函数,它作为一个类…