Does anyone know of a program / server capable of running classic asp (VBScript, JScript)?
and other than IIS?
Does anyone know of a program / server capable of running classic asp (VBScript, JScript)?
and other than IIS?
I was able to resolve using IIS Express (@OnoSendai tip). I had to do some adaptations because my machine is x64.
c:\windows\syswow64\odbcad32.exe
C: \ Program Files (x86) \ IIS Express> iisexpress / path: C: \ myApp \ / port: 1234
I accessed url http://localhost:1234/
Everything working perfectly.
To make it easier to make the site run, create a file
run.bat
@echo off
cd "C:\Program Files (x86)\IIS Express>"
iisexpress /path:C:\myApp\ /port:1234
Now, every time I need the site I give 2 clicks in the file above and ready,
the site is already online
You can use the Utildev Cassini .
I used it for a long time here and had no problems.
Or else iis express embedded in a thumb drive , but there you will have to configure whenever you use, laborious, but if it is the best alternative, it is worth mentioning.
But it only runs classic asp, and can be used on linux.