以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  怎样列出服务器当前开启的所有IP地址  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=158568)

--  作者:237756360
--  发布时间:2020/11/24 23:02:00
--  怎样列出服务器当前开启的所有IP地址
  • 求助:怎样列出服务器当前开启的所有IP地址

--  作者:有点蓝
--  发布时间:2020/11/24 23:16:00
--  
HttpServer服务

HttpServer.Prefixes.Add("http://127.0.0.1/")
HttpServer.Prefixes.Add("http://192.168.0.100/")

For Each s As String In HttpServer.Prefixes
    Output.Show(s)
Next