Huge ASP and ASP.NET Problem with old ADO.NET
-
Hi, I've was given an old ADO.NET websystem project. They built this project in old ASP (using recordsets such and so forth) and they want me to convert all the ASP code to ASP.NET if they won't work together. When I included some ASP pages into my new ASP.NET project I got this error. Error 1 'Let' and 'Set' assignment statements are no longer supported. C:\Documents and Settings\mhomsey\My Documents\Visual Studio 2005\WebSites\MyWebSite\dbconnection.asp 15 Does this mean, this old code doesn't work anymore and I have to rebuild that file or is there a way around this sort of error? I appreciate all your help as I hope someone out there in this world knows a quick easy solution to this problem rather than rebuilding it all. Michael - Cheers :) FYI - I'm using VS2005 and I'm trying to convert it to ASP.NET 2.0
-
Hi, I've was given an old ADO.NET websystem project. They built this project in old ASP (using recordsets such and so forth) and they want me to convert all the ASP code to ASP.NET if they won't work together. When I included some ASP pages into my new ASP.NET project I got this error. Error 1 'Let' and 'Set' assignment statements are no longer supported. C:\Documents and Settings\mhomsey\My Documents\Visual Studio 2005\WebSites\MyWebSite\dbconnection.asp 15 Does this mean, this old code doesn't work anymore and I have to rebuild that file or is there a way around this sort of error? I appreciate all your help as I hope someone out there in this world knows a quick easy solution to this problem rather than rebuilding it all. Michael - Cheers :) FYI - I'm using VS2005 and I'm trying to convert it to ASP.NET 2.0
Michael101 wrote:
'Let' and 'Set'
I think this is the old way of writing the property in VB. so, you can just change it as a property in ASP.NET.
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)