home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD><TITLE>Sambar Server Network Control Panel</TITLE>
- <%
- #include "../header.asp"
- #include "../menu.asp"
- area = "whois";
- #include "submenu.asp"
- %>
- <BR>
- <BLOCKQUOTE><BLOCKQUOTE>
- <FORM method=get action=whois.asp>
- <INPUT NAME=host VALUE="<%=getParameter($params, "host"); %>">
- <INPUT TYPE=submit VALUE="WhoIs">
- </FORM>
- <BR>
- <%
- host = getParameter($params, "host");
- if (host != NULL)
- {
- params = allocParameters();
- setParameter(params, "sitename", host);
- ret = rpc("whois", params);
- if (ret == -1)
- {
- printf("WhoIs <I>%s</I> failed.", host);
- }
- }
-
- %>
- </BLOCKQUOTE></BLOCKQUOTE>
- <%
- #include "../footer.asp"
- %>
- </BODY></HTML>
-