netbox开启服务后自动访问首页
netbox开启服务后自动访问首页
Dim httpd
Shell.Service.RunService "NBWeb", "NetBox Web Server", "NetBox Http Server Sample"
'---------------------- Service Event ---------------------
Sub On
Set httpd = NetBox.CreateObject("NetBox.HttpServer")
If httpd.Create("", 800) = 0 Then
Set host = httpd.AddHost("", "\wwwroot")
host.EnableScript = true
host.AddDefault "index.html"
httpd.Start
else
Shell.Quit 0
end if
Set ht = CreateObject("NetBox.HtmlWindow")
ht.open "http://localhost/index.html"
ht.showDialog
End Sub
Sub On
httpd.Close
End Sub
Sub On
httpd.Stop
End Sub
Sub On
httpd.Start
End Sub