PDA

View Full Version : error msgs


reubenb
09-26-2002, 08:31 AM
I made this simple get ip command in asp & i get:


Hello user connected from

Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/ip.asp, line 10

Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp.

the .asp file is below

<html>

<head>
<title>Resolve IP</title>
</head>

<body>

<p>Hello user connected from <%
set bh = Server.CreateObject("cyScape.browserObj")
hostname = bh.ResolveIP
if hostname <> "" then
response.write hostname
else
response.write "Unknown"
end if
%> </p>

<p>%&gt;</p>
</body>
</html>


Thanks :)

glenngv
09-26-2002, 08:39 AM
you are using a component by a vendor
did you follow the instructions on how to use it? like installing the .DLL?

reubenb
09-26-2002, 08:43 AM
oops can u help me with that hehe
thanks

glenngv
09-26-2002, 08:56 AM
there's no readme file for the component?
do you have the dll?

if yes, then in the dos command, type this to register the dll:

regsvr32 full path of dll file


to unregister (in case you need to):

regsvr32 /u full path of dll file