一个关于IIS的类[8]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 acewang 的 blog

        set(byval value as string)

            site.invoke("put", "defaultdoc", value)

        end set

    end property 

    public property maxbandwidth() as string

        get

            return ctype(site.properties("maxbandwidth")(0), string)

        end get

        set(byval value as string)

            site.invoke("put", "maxbandwidth", value)

        end set

    end property

    public property serverstate() as int32

        get

            return ctype(site.properties("serverstate")(0), int32)

        end get

本文关键:IIS vb.net
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top