Will asp work in the .net 1.1 framework?

I have an old asp application. I am migrating to a new server with .net 1.1. Will it work in this environment?

+2


source to share


5 answers


Having .Net version installed and enabled will not affect the execution of classic asp.

However, you need to make sure classic asp is enabled. (It is disabled when installing IIS by default on Windows Server 2003).



Under IIS Manager, select Web Services Extensions. Here you will see Active Server Pages along with other installed extensions. This is where you can enable or disable the classic asp.

+2


source


Classic ASP pages can definitely work side-by-side with .NET applications. You just need to make sure that classic ASP pages are enabled in IIS (later versions of IIS have standard ASP extensions disabled by default, so you need to manually enable them).

To check (if classic ASP is enabled):



IIS 7 - Select your server, then open "ISAPI and CGI Restrictions". Make sure "Active Server Pages" is "Allowed"

IIS 6 - Select a Server, expand the tree and select "Web Services Extensions". Make sure "Active Server Pages" is "Allowed"

+5


source


YES! Classic ASP runs on IIS, it has nothing to do with the fact that ASP.NET is also installed.

+2


source


yes, absolutely, it will

+1


source


Yes, it should work fine. However, as always, you should test thoroughly. Migrating a site to ASP.NET is something that should be carefully researched if you go this route, as the paradigm is very different.

+1


source