Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

combine classic asp with asp.net

I have a (huge) website written in classic asp. Now do I have to switch to vb.net (razor). Is there a way to combine those 2 till the switch is complete ?

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

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

like image 628
namzaG Avatar asked Dec 16 '16 11:12

namzaG


People also ask

Is Classic ASP and ASP.NET is same?

No. ASP or also popularly known as Classic ASP developed by Microsoft is first Server-side scripting engine which is used for dynamic generation of web pages. ASP.NET, on the other hand, is a server-side web framework, open-source, which is designed for the generation of dynamic web pages.

Is Classic ASP still used?

It used scripting on the server to create content that would then be sent to a client's web browser, and as a result it enjoyed a tremendous amount of success. Classic ASP, however, is no longer being developed by Microsoft at all – it has long since been replaced by ASP.NET in 2002, a newer alternative.

Is Classic ASP deprecated?

Classic ASP is still supported and will be all the time that it is included in IIS, which is a component of Windows Server.

Does iis10 support Classic ASP?

Yes, you just need enable classic asp in iis? Normally, the iis version in windows 10 is iis10, you can follow below steps to enable classic asp in iis. Search for Turn Windows Features on or off in the win10 search bar.


1 Answers

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

ASP and ASP.NET can both be used on the same Web server. That is, a Web site or Web application within a site can contain both ASP.NET pages and ASP pages. Because both ASP and ASP.NET pages can be accessed from the same Web server, you are not required to port your existing ASP pages over to ASP.NET-compatible pages. [...]

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

like image 103
Jacopo Avatar answered Sep 28 '22 09:09

Jacopo