Figure 1 Listbox to Textbox Frame.html

Frame.html
<frameset cols="200,*">
<frame src="FrameList.html" name="ListFrame">
<frame src="FrameText.html" name="TextFrame">
</frameset>
FrameList.html
<html>
<head>
<script>
function DoSelect() {
    parent.TextFrame.MyForm.Text1.value = 
        FormList.MyList.options(FormList.MyList.selectedIndex).value;
}
</script>
</head>
<body>
<form name="FormList">
<select name="MyList" size=5 onchange="DoSelect();">
<option value="ListItem1">List Item #1</option>
<option value="ListItem2">List Item #2</option>
<option value="ListItem3">List Item #3</option>
<option value="ListItem4">List Item #4</option>
<option value="ListItem5">List Item #5</option>
<option value="ListItem6">List Item #6</option>
<option value="ListItem7">List Item #7</option>
</select>
</body>
</html>
FrameText.html
<html>
<body>
<form name="MyForm">
<input type="text" name="Text1">
</form>
</body>
</html>
Figure 2 Request.Form and POST
<%
IF Request.Form("job")><"" THEN
    TargetJob = Request.Form("job")
ELSE
    TargetJob = "No Text Entered"
END IF

IF Request.Form("test")><"" THEN
    TargetTest = Request.Form("test")
ELSE
    TargetTest = "No Text Entered"
END IF
%>
<html>
<body>
<FORM action="JobViewer.asp" method="post">
Text:<input type="text" name="test">
<br>
<input type="hidden" name="job" value="<%=TargetTest%>">
<input type="submit" value="submit details">
</FORM>

Test: <%=TargetTest%><br>
Job : <%=TargetJob%><br>
</body>
</html>
Figure 3 Using Z-index
<HTML>
<HEAD>
</HEAD>
<BODY>
<IMG SRC="somegif.gif" STYLE="position:absolute; top:100; 
left:100; z-index:1">

<DIV STYLE="position:absolute; top:100; left:100; z-index:0">
 <SELECT NAME="Cats" SIZE="1">
  <OPTION VALUE="1">Calico
  <OPTION VALUE="2">Tortie
  <OPTION VALUE="3" SELECTED>Siamese
 </SELECT>
</DIV>
</BODY>
</HTML>
Figure 4 XML Data File Structure
<manual>
    <chapters>
        <chapter>
            <name>Chapter 1</name>
            <details>...</details>
        </chapter>
        <chapter>
            <name>Chapter 2</name>
            <details>...</details>
        </chapter>
        ...
        <chapter>
            <name>Chapter n</name>
            <details>...</details>
        </chapter>
    </chapters>
</manual>
Show: