What are the main advantages of upgrading my existing ASP pages to ASP.NET?
• Increased performance. Independent tests have shown that ASP.NET applications can handle two to three times the requests per second as classic ASP applications. • Increased stability. The ASP.NET runtime closely monitors and manages processes. If a process malfunctions (for example, if it leaks or deadlocks), ASP.NET can create a new process to replace it. This helps to keep your application available to handle requests. • Increased developer productivity. Features such as server controls and event handling in ASP.NET can help you to build applications more rapidly and with fewer lines of code. It is also easier to separate code from HTML content.