One of my client's website (I didn't code it) was migrated to a new server yesterday by his host. All this aspx code that uses the aspcompat attribute now bombs -
<%@ Page Language="VB" AspCompat="true" %> 'Next we need to create a database connection object on the server using the ADO Database connection object. 'Create an ADO connection object adoCon = Server.CreateObject("ADODB.Connection")
'Set an active connection to the Connection object using DSN connection adoCon.Open ("DSN=Application")
So he's obviously using the old ADO objects and is banking on COM compatibility for it to work.
I tried setting up a new application pool at this folder level and set it to use the Classic pipeline but that didn't help either.
Short of rewriting all his ADO code to ADO.NET, what can I do to have him up and running? This is a production issue for him at this time, so time for him, is of the essence.
Thanks!