Summary: You can use mySQL database and ASP by using DNS-LESS connection as shown below. <%
strConnection = "driver={MySQL}; server=212.155.113.2; uid=YOUR_ID; pwd=YOUR_PWD; database=YOUR_DB; option=NUM"
Set adoDataConn = Server.CreateObject("ADODB.Connection")
adoDataConn.Open strConnection
strQuery = "SELECT * FROM your_table;"
Set RS = adoDataConn.Execute(strQuery)
%> |