Work at ordinary times, OS is XP-HOME edition, in the development of ASP and ASP. NET Program Is not IIS.
I found a plug-in that can replace IIS In the XP-HOME version: netbox. (For testing ASP programs locally, I think it is OK)
Website:Http://www.netbox.cn/
You must use a real email for registration. Otherwise, you will not receive the verification password.
The usage is as follows:
After installation
Find the samples \ webserver directory under the installation directory
Put your website directory under the wwwroot directory
Open main. box in a text editor
The content is as follows:
Sub onservicestart ()
Set httpd = netbox. Createobject ("netbox. httpserver ")
If httpd. Create ("", 80) = 0 then ------------------------------------------------------ 80 indicates that the port is used
Set host = httpd. addhost ("", "\ wwwroot") --------------------------------- this is the website directory name
Host. enablescript = true
Host. adddefault "Default. asp" ---------------------------------------------- this part is the default homepage name.
Host. adddefault "default.htm"
Host. adddefault "index. asp"
Host. adddefault "index.htm"
After modification, run main. Box or compile it into an executable file using its own debug.
He does not limit the number of people
Small resource occupation
Available in 2000/XP/2003
The security performance of compilation and packaging is slightly higher than that of IIS.
But note:
Please re-compile the website content every time you modify it.