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>%></p>
</body>
</html>
Thanks :)
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>%></p>
</body>
</html>
Thanks :)