Will asp work in the .net 1.1 framework?
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.
source to share
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"
source to share