I am attempting to create a frames interface and I ran across something odd, see the code below. The function spoiler at the bottom seems to cause havoc w/ the program if declared as private, export or public?
Am I doing something fundamentally wrong w/ my frames implementation?
Thanks
Leon Bloom
behavior: if this function is declared as private, export or public the frames seem to loop?
<script language=vortex>
<db = "c:\morph3\texis\testdb">
<a name=main>
<frameset cols="40%,*">
<frame name="left" src="$url/fcontrol.html">
<frame name="right" src="$url/disp.html">
</frameset>
</a>
<a name=fcontrol>
<spoiler>
<sql "select id from patent"></sql>
<form action="$url/disp.html?target=$pick" target="right" method="get">
<select name=pick>
<options $id $selected $id>
</select>
<br><br>
<input type="submit">
</form>
</a>
<a name=disp>
<sql "select pabstract from patent where id = $pick">
id: $id<hr>
$pabstract
</sql>
</a>
<!---
behavior: if this function is declared as private, export or public the frames seem to loop?
--->
<a name= spoiler>
Hi from spoiler
</a>
</script>
Am I doing something fundamentally wrong w/ my frames implementation?
Thanks
Leon Bloom
behavior: if this function is declared as private, export or public the frames seem to loop?
<script language=vortex>
<db = "c:\morph3\texis\testdb">
<a name=main>
<frameset cols="40%,*">
<frame name="left" src="$url/fcontrol.html">
<frame name="right" src="$url/disp.html">
</frameset>
</a>
<a name=fcontrol>
<spoiler>
<sql "select id from patent"></sql>
<form action="$url/disp.html?target=$pick" target="right" method="get">
<select name=pick>
<options $id $selected $id>
</select>
<br><br>
<input type="submit">
</form>
</a>
<a name=disp>
<sql "select pabstract from patent where id = $pick">
id: $id<hr>
$pabstract
</sql>
</a>
<!---
behavior: if this function is declared as private, export or public the frames seem to loop?
--->
<a name= spoiler>
Hi from spoiler
</a>
</script>