Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to run classic asp on Cassini Webserver?

Is it possible to run classic asp on Cassini Webserver?

I have a mixed website (classic asp and dotnet)...

like image 569
andrecarlucci Avatar asked Aug 17 '10 17:08

andrecarlucci


3 Answers

No, you can't. Cassini only renders ASP.net pages.

like image 87
Eduardo Molteni Avatar answered Oct 20 '22 15:10

Eduardo Molteni


Have you considered IIS Express? It's similar to Sql Server Express user instances in that it can be run and used without requiring administrative privileges or changes to your code to cater for it. It's a "user mode" version of IIS, and thus fully supports Classic ASP which would help with your scenario.

It's not integrated into Visual Studio (in the same way Cassini is) yet, but there'll be a tooling patch to do that at some point.

like image 7
Rob Avatar answered Oct 20 '22 15:10

Rob


Cassini is run from within Visual Studio. If you have a solution that contains both ASP.NET and ASP, it will continue to run on Cassini. But you can not run a pure classic ASP application this way.

like image 1
Kangkan Avatar answered Oct 20 '22 13:10

Kangkan