Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

component cataloge 1

Status
Not open for further replies.

oyanabones

Technical User
Mar 16, 2002
2
US
Is there a way for me to obtain a listing of the available asp components on the server which is shared with others at a hosted site? A utility to list available components?
 
You can find the names of the ones you want, and then try to create them:

<%@LANGUAGE=JSCRIPT%>
<%
try{
var obj = new ActiveXObject(&quot;AspImage.Image&quot;);
}
catch(e){
Response.write(&quot;Requested object is not installed &quot; + e.description);
}
%>


But shouldn't you host be able to tell you? Maybe you're dealing with 2day.com, then I know what you mean.
 
I found a great diagnostic for this problem
Check out I found this
diagnostic works well and told me a great deal
about my hosting sites server setup.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top