"paul dallaire" <pa***********@sympatico.ca> wrote
HI! I need to associate a iframe pages to a specific page for my menu
system.
I want to be able to click on my menu system anywhere on my site and the
options that is clicked will load that options ( iframe page ) into a
specific page that holds the iframe.
Paul
Total air code, but may give you some ideas...
Menu -
<a href="mainpage.asp?ifp=subpage.asp">Click</a>
mainpage.asp -
<%
ifpsrccode="document.getElementbyid.if1.src='" & request("ifp") & "'"
%>
<html>
....
<body onload="<%=ifpsrccode%>">
<iframe id=if1 name=if1></iframe>
....
</html>
However, there must be easier (and non-clientside) ways! Try looking at
server.execute, or XMLHTTP etc
IME "clever coding" is a nightmare for someone else to pick up if they have
to work with your coding in future. Often better just to write the extra
pages as stand-alones unless it is more than 100 or so...
Giles