
hola a todos tengo este problema y la verdad no se que hacer, alguien de ustedes me podria ayudar, plissss
cuando corro mis paginas para querer visualizarla me presenta este error
HTTP 500.100. Error interno del servidor: error de ASP
Servicios de Internet Information Server
Tipo de error:
(0x80004005)
el otro problema es cuando quiero cargar mis tablas de mi base de datos que esta en sql server ,me sale este error
al ejecutar el componente getComponentChildren en connection htm, linea 65 del archivo, connection.js
y lo que tengo en la linea 65 es lo que esta en negrito;


//get the list of tables for the given Connection object.
var connectionName = componentRec.parent.name;
if(connectionName && connectionName.length)
{
var tableObjects = MMDB.getTables(connectionName); for (i = 0; i < tableObjects.length; i++)
{
var thisTable = tableObjects[i]
thisSchema = dwscripts.trim(thisTable.schema)
if (thisSchema.length == 0)
{
thisSchema = dwscripts.trim(thisTable.catalog)
}
if (thisSchema.length > 0)
{
thisSchema += "."
}
var tableName = String(thisSchema + thisTable.table);
var TableCompInfo = new ComponentRec(tableName, TABLE_FILENAME,true,true,tableName,false,true);
TableCompInfo.objectType = "Table";
cs_Children.push(TableCompInfo);
}
}
}
no se si esto tenga que ver con el primer error
mi conexion es esta para mi base de datos
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="false"
' Catalog=""
' Schema=""
Dim MM_pi_STRING
MM_pi_STRING = "Provider=SQLOLEDB;Server=Nombre del servidor;Database=nombre de la base de datos;UID=Pnombre del usuario;PWD=contraseña;"
%> espero no confundirlos,