Can I run my existing ASP code on an ASP.NET server?


Yes, your existing ASP code can run alongside new ASP.NET code. This is because ASP pages are still processed by the same mechanism as before, and the new framework processes ASP.NET pages. This is achieved by ASP.NET pages have a new file extension (.aspx), meaning they are not processed the same way as ASP pages.

Add Feedback