This applies to Windows Hosting accounts only. You will need to use a DSNless connection which can be achieved by using code with the following VBscript: set rsEvents = Server.CreateObject(“ADODB.Recordset”) rsEvents.ActiveConnection = “Driver={MySQL ODBC 5.1 Driver}; DATABASE=databasename;USER=username; PASSWORD=password; Server=127.0.0.1″ …or the following JScript: var rsEvents = Server.CreateObject(“ADODB.Recordset”); rsEvents.ActiveConnection = “Driver={MySQL ODBC 5.1 Driver}; DATABASE=databasename;USER=username; PASSWORD=password; [...]
Category Archives: ASP Scripting and ASP.NET
What is ASP?
December 9, 2010 – 6:49 pm
ASP is a server-side scripting language developed by Microsoft, and originally designed to run on Windows hosting platforms. ASP is not the same as ASP.NET – they are very different technologies. Update: Our systems used to provide Chilisoft ASP (Java System Active Server Pages – an emulated ASP provided by Sun One) on our Linux [...]