home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <title>AdvRegistry Component</title>
- </head>
- <body>
- <%
- dim Registry
- dim Result
- set Registry = Server.CreateObject("AdvRegistry.Registry")
- Registry.Type = Request.Form("Type")
- Registry.Sort = Request.Form("Sort")
- Set Result = Registry.GetAll(Request.Form("Branch"))
- if (Registry.IsError = 1) then
- Response.Write "Error: " & Registry.ErrorReason & "<br>"
- else
- %>
- <TABLE WIDTH=75% ALIGN=center BORDER=1 CELLSPACING=1 CELLPADDING=1>
- <TR bgcolor="black">
- <TD bgcolor="black"><b><font color="white">Entry</font></b></TD>
- <TD bgcolor="black"><font color="white">Type</font></b></TD>
- <TD bgcolor="black"><font color="white">Value</font></b></TD>
- </TR>
- <%
- for each Member in Result
- %>
- <TR>
- <TD><%=Member.Entry%></TD>
- <TD><%=Member.Type%></TD>
- <TD><%=Member.Value%></TD>
- </TR>
- <%
- next
- %>
- </TABLE>
- <%
- end if
- set Directory = Nothing
- set Result = Nothing
- %>
- <A HREF="dsp_getall.htm">Back</A>
- </body>
- </html>
-