总想说点什么……
想想两年前,2004年12月31日晚,我在网络上建立的NewLife这个组织,当时学ASP的那个狂潮呀……
两周年庆即将到来,希望众多说ASP落后的朋友,看看ASP还能做什么……
好了,现在公布 新生命页面开发专用Web服务器v1.1 的源码,曾有人要买,呵呵,其实不值钱……
基于NetBox做的,可以到http://www.codepub.com/software/view-software-9076.html上下载NetBox2.8,才能运行
作为NetBox群兄弟学习用吧。
| 以下是代码片段: Dim httpd Dim ServiceName ServiceName = "NewLifeWebServer" 'Shell.Service.RunService "NLWeb", "新生命专用Web服务器,80端口,支持ASP", "新生命页面应用开发专用" Shell.Service.Name = ServiceName If Shell.Service.Running then Shell.Service.RunService ServiceName '---------------------- Service Event --------------------- Sub OnServiceStart() Set httpd = NetBox.CreateObject("NetBox.HttpServer") If httpd.Create("", 80) <> 0 Then host.EnableScript = true httpd.Start Sub OnServiceStop() Sub OnServicePause() Sub OnServiceResume() Sub OnServiceCommand(uCtrl) Sub OpenUrl(url) |
