Foros del Web » Programando para Internet » ASP Clásico »

¿Qué componentes tengo registrados?

Estas en el tema de ¿Qué componentes tengo registrados? en el foro de ASP Clásico en Foros del Web. Hola a todos! Quisiera saber qué componentes tengo registrados en mi servidor web. Alguien conoce alguna aplicación o forma para lograrlo ? Desde ya, muy ...
  #1 (permalink)  
Antiguo 07/12/2004, 15:55
Avatar de Hereje  
Fecha de Ingreso: junio-2002
Ubicación: Córdoba, Argentina
Mensajes: 439
Antigüedad: 22 años, 11 meses
Puntos: 2
Pregunta ¿Qué componentes tengo registrados?

Hola a todos!

Quisiera saber qué componentes tengo registrados en mi servidor web.
Alguien conoce alguna aplicación o forma para lograrlo ?

Desde ya, muy agradecido!
__________________
Sergio
  #2 (permalink)  
Antiguo 07/12/2004, 17:53
Avatar de AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 2 meses
Puntos: 535
mmm... en www.webwizguide.com hay uno pero si mal no recuerdo es sólo para los com'onentes de correo. date una vuelta por allí y fijate
__________________
...___...
  #3 (permalink)  
Antiguo 08/12/2004, 10:48
Avatar de lexus  
Fecha de Ingreso: enero-2002
Ubicación: Cali - Colombia
Mensajes: 2.234
Antigüedad: 23 años, 4 meses
Puntos: 4
hola, mira este es el que yo uso, te muestra los mas usados o mas comunes, ovbiamente no estaran todos.. pero creo qeu te servira

Código:
   
<%
Dim theComponent(11)
Dim theComponentName(11)
theComponent(0) = "ADODB.Connection"
theComponent(1) = "SoftArtisans.FileUp"
theComponent(2) = "AspHTTP.Conn"
theComponent(3) = "AspImage.Image"
theComponent(4) = "LastMod.FileObj"
theComponent(5) = "Scripting.FileSystemObject"
theComponent(6) = "SMTPsvg.Mailer"
theComponent(7) = "CDONTS.NewMail"
theComponent(8) = "Jmail.smtpmail"
theComponent(9) = "SmtpMail.SmtpMail.1"
theComponent(10) = "Persits.Upload.1"
theComponent(11) = "UnitedBinary.AutoImageSize"
theComponentName(0) = "ADODB"
theComponentName(1) = "SA-FileUp"
theComponentName(2) = "AspHTTP"
theComponentName(3) = "AspImage"
theComponentName(4) = "LastMod"
theComponentName(5) = "FileSystemObject"
theComponentName(6) = "ASPMail"
theComponentName(7) = "CDONTS"
theComponentName(8) = "JMail"
theComponentName(9) = "SMTP"
theComponentName(10) = "Persits Upload"
theComponentName(11) = "AutoImageSize"
Function IsObjInstalled(strClassString)
On Error Resume Next
IsObjInstalled = False
Err = 0
Dim xTestObj
Set xTestObj = Server.CreateObject(strClassString)
If 0 = Err Then IsObjInstalled = True
Set xTestObj = Nothing
Err = 0
End Function
%>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFffff">
<div align="center">Estos 
  son los componentes que tiene instalado este servidor <br>
  <br>
  <br>
  <% 
Dim i
For i=0 to UBound(theComponent)
If Not IsObjInstalled(theComponent(i)) Then
Else
Response.Write "<tr>" & vbCrLf
Response.Write "<td width=""100%"">" & vbCrLf
Response.Write "<b>" & theComponentName(i) & "</b><br>" & vbCrLf
Response.Write "</td>" & vbCrLf
Response.Write "</tr>" & vbCrLf
End If
Next 
%>
</div>
</body>
</html>
suerte
__________________
Control de Visitantes, Control de Accesos, Minutas digitales, Manejo de Correspondencia
http://www.controldevisitantes.com
  #4 (permalink)  
Antiguo 08/12/2004, 11:22
 
Fecha de Ingreso: noviembre-2002
Mensajes: 24
Antigüedad: 22 años, 6 meses
Puntos: 0
Lo más completo que he visto:
http://testwin2.worldispnetwork.com/

También tienen un .asp para bajar.

Saludos.
  #5 (permalink)  
Antiguo 08/12/2004, 12:06
Avatar de Myakire
Colaborador
 
Fecha de Ingreso: enero-2002
Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses
Puntos: 146
En las FAQ's también alguien posteo su forma de lograrlo
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 03:35.