home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_03.cab
/
iipathls.asp
< prev
next >
Wrap
Text File
|
1997-11-12
|
2KB
|
66 lines
<%@ LANGUAGE=VBScript %>
<% Option Explicit %>
<% Response.Expires = 0 %>
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#000000" VLINK="#000000" TOPMARGIN=10 TEXT="#000000">
<%
Dim key, item
For Each key in Request.Querystring
Response.write key & ":" & Request.Querystring(key) & "<BR>"
Next
%>
<FORM NAME="userform">
<SCRIPT LANGUAGE="JavaScript">
var wrtstr = "";
var inheritenceList = top.opener.top.title.inheritenceList;
var lastproperty = "";
//inheritenceList.sort(sortOrder);
document.write ("<TABLE BORDER=0>");
for (var i=0;i < inheritenceList.length; i++) {
if (lastproperty != inheritenceList[i].property){
lastproperty = inheritenceList[i].property;
wrtstr = "<TR>";
wrtstr += writeCol(3,lastproperty);
wrtstr += "</TR>";
document.write(wrtstr);
}
wrtstr = "<TR>";
wrtstr += writeCol(1," ");
wrtstr += writeCol(1,"<INPUT TYPE='checkbox' NAME='hdn" + lastproperty + "' OnClick='setPath(document.userform." + lastproperty + ");'>");
wrtstr += writeCol(1,"<INPUT TYPE='hidden' NAME='" + lastproperty + "' VALUE='" + inheritenceList[i].path + "'>");
wrtstr += writeCol(1,inheritenceList[i].path);
wrtstr += "</TR>";
document.write(wrtstr);
}
document.write ("</TABLE>");
function writeCol(colspan,str){
return "<TD COLSPAN = " + colspan + " STYLE = 'font-face: Helv; font-size: 8pt;'><FONT SIZE = 1 FACE = 'Helv'>" + str + "</FONT></TD>";
}
function setPath(hdnContrl){
}
</SCRIPT>
</FORM>
</BODY>
</HTML>