I'm upgrading a classic ASP application. This app has a few old unmanaged DLL calls and some complicated logic inside the asp page/function.
Is it possible for me to put the .asp file into the ASP.NET MVC app and then load the result using $.get
?
I try putting the .asp file straight into the Scripts or Models folder but I couldn't load the .asp file when I try to run it straight from the server:
This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly.
Any ideas on how to achieve this funcationality?