Forum Moderators: open
There are a lot of good articles about converting from ASP to .NET on the Microsoft ASP.NET web site -- www.asp.net -- and on MSDN [msdn.microsoft.com...]
If you don't need to leverage the new features of .NET, there's no reason to migrate unless you just want the experience and want to learn some new stuff. If you have production deadlines to meet, stick with what you know and tinker with .NET on the side.
Or even better, can I mix the two? Is it OK to leave my ASP stuff alone and integrate a page or two of .NET in with it?
I took a look at www.asp.net but it doesn't answer that question for me.
Thanks
I was asking because my host supports ASP but also has a plan specifically for .NET and I was not sure if that ment I would have to convert the entire site. (I am already running up on a deadline and that would be a nightmare!)
Thanks for the info
There are a lot of language differences between VBScript and VB.NET, and also between JScript and JScript.NET. I would recommend .NET for any new development over ASP, or if your site is running excruciatingly slow, ASP.NET can give you a big boost. But VBScript and JScript are loosely-typed languages, and VB.Net and JScript.Net are strongly-typed (like C++, Java, VB w/Option Explicit, etc.). You will probably find that you've got more variables than Dim (or var) statements!
Database access are also a lot different (for the better) in ASP.Net, and while you can use the same old ADODB.Recordset that you're used to, you're just adding another layer of execution without much in return by simply converting your existing code to ASP.NET