Asp classic with Asp .net

2

I have a Asp net project and I would like to take a page from another project, but it is asp classic, I did some research and I saw that I could do this "merge", but no one said for sure how to do it. Could someone help? The only solution they said was to run the project in iis and configure it, but only managed to configure to run separately, the project with the page asp classic does not run its functions.

    
asked by anonymous 01.10.2015 / 19:18

1 answer

1

Although the two programming languages have the same nomenclature:

ASP (extension: asp)

ASP.NET (extension: aspx)

They are totally different languages in sessions and methods, to try to heal this problem try to outsource the bridge between one language and another. When I want to share data from one * .asp page to another * .php, I make the first page generate an XML file which any other programming language can retrieve and treat and / or display.

    
20.02.2016 / 15:33