0
votes

I have an ASP Classic / VBScript project that I want to run with IIS Express when pressing the Run or Debug buttons in Rider, as one can when using Visual Studio. Is this possible?

1
I don't think JetBrains bothers itself to support obsolete technologies like that.Lex Li
There is a plugin for Bash files. It provides custom Run/Debug Configuration that allows you to run such files from IDE. There is one for Cmd files .. but I do not know if it provides Run/Debug Configurations. If it does (or some another plugin offers similar functionality)... you could write some custom .cmd file that will launch the needed commands for you (e.g. launch IIS Express; open specific URL in a browser). No better ideas from me. P.S. You could use External Tools functionality, but AFAIK it's IDE-wide functionality and not project-specific...LazyOne

1 Answers

0
votes

To the best of my knowledge, Classic ASP needs IIS to run. IIS Express (cassini) does not support classic ASP. You can map a website or website's folder to a directory and open that in JetBrains for editing and testing. That is how Dreamweaver and other Classic ASP editing tools used to work back in the day and you can probably use visual studio code for that today.

Also, if you have not already done so, please check out This Link