Hosting Inicio > Hosting > Consultas Tecnicas > Como configuro la conexion a base de datos SQL Server con ASP? Tags: ASP, bases de datos, SQL Server Aplicando el siguiente ejemplo, puedes realizar una conexion a SQL Server con codigo ASP. <% 'Se crea el objeto de la conexion set Conex = Server.CreateObject("ADODB.Connection") 'Se especifica la ubicacion de la base de datos SQL Server Conex.ConnectionString = "Provider=SQLOLEDB.1;" & _ "Data Source=.;" & _ "Integrated Security=SSPI;" & _ "Persist Security Info=False;" & _ "Initial Catalog=testconndb" 'Provider: Proveedor 'Integrated Security=SSPI: Seguridad integrada de windows 'Initial Catalog: Base de datos 'Data Source: SQL Server (. = localhost) 'Se abre la conexion y se ejecuta una consulta Conex.Open set Rs = Server.CreateObject("adodb.recordset") set Rs = Conex.Execute("SELECT * FROM tabla") Response.Write Rs("Campo") Conex.Close 'Se eliminan los objetos de la memoria Set Rs = Nothing Set Conex = Nothing%>