Classic ASP out of IIS? Windows x64

6

Does anyone know of a program / server capable of running classic asp (VBScript, JScript)?

and other than IIS?

    
asked by anonymous 06.03.2014 / 13:48

3 answers

8

I was able to resolve using IIS Express (@OnoSendai tip). I had to do some adaptations because my machine is x64.

  • Downlaod link
  • I installed IIS
  • I downloaded link for 32 bit version
  • I installed Mysql Connector / ODBC
  • I executed c:\windows\syswow64\odbcad32.exe
  • Create the ODBC data source for mynha mysql connection.
  • I configured the site with the command in the terminal
  •   C: \ Program Files (x86) \ IIS Express> iisexpress / path: C: \ myApp \ / port: 1234

    I accessed url http://localhost:1234/

    Everything working perfectly.

    Update:

    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

        
    06.03.2014 / 15:12
    3

    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.

        
    06.03.2014 / 14:51
    3

    Use Apache ASP

    But it only runs classic asp, and can be used on linux.

        
    06.03.2014 / 15:57