Combine classic asp with asp.net

I have a (huge) site written in classic asp. Now I need to switch to vb.net (razor). Is there a way to combine these 2 before the switch completes?

Is there a way to allow the application to work with classic asp and vb.net?

(I use webmatrix) (I don’t know if this is important information) The reason I ask about this is because the website contains more

+5
source share
1 answer

MSDN says you can run .asp and .aspx on the same server

ASP and ASP.NET can be used on the same web server. This Web site or web site application may contain both ASP.NET pages and ASP pages. Because ASP and ASP.NET pages can be accessed from the same web server, you do not need existing ASP pages on ASP.NET-compatible pages. [...]

https://msdn.microsoft.com/en-us/library/ms973813.aspx

+3
source

Source: https://habr.com/ru/post/1261382/


All Articles