J
jm
I have a master framesetpage that calls two .aspx pages. Each page
needs parameters passed to it. The left side is a treeview. The
right side is the detail.
I cannot find an asp:frame or the like.
I need to be able to have the master frameset so that when it
initially pulls up the two source frames it sends them the parameter
in the querystring. Make Sense?
Here is the Master Frameset:
<html>
<head>
<title>Order Management</title>
</head>
<frameset border="0" framespacing="0" frameborder="0" cols="200,*">
<frame name="contents" src="temp.aspx" scrolling="yes"
target="main" />
<frame name="main" src="orderinformationmain.aspx" />
<noframes>
<p>
This page requires frames, but your browser does not
support them.
</p>
</noframes>
</frameset>
</html>
However, each of the individual pages above MUST have values sent to
them via the querystring, but I cannot find a way to do that. Any
help is appreciated.
And yes, it must be frames (but I am open to any suggestions). An
Iframe will only work for the left hand frame, and I might could add
javascript for the initial right hand frame, but the positioning is
"ugly." Real frames allow me a scroll bar so that when my treeview
has a larger text object it doesn't push the frame to the side, but
uses a scrollbar (it move an iframe to the side - bad).
Thank you for any help.
needs parameters passed to it. The left side is a treeview. The
right side is the detail.
I cannot find an asp:frame or the like.
I need to be able to have the master frameset so that when it
initially pulls up the two source frames it sends them the parameter
in the querystring. Make Sense?
Here is the Master Frameset:
<html>
<head>
<title>Order Management</title>
</head>
<frameset border="0" framespacing="0" frameborder="0" cols="200,*">
<frame name="contents" src="temp.aspx" scrolling="yes"
target="main" />
<frame name="main" src="orderinformationmain.aspx" />
<noframes>
<p>
This page requires frames, but your browser does not
support them.
</p>
</noframes>
</frameset>
</html>
However, each of the individual pages above MUST have values sent to
them via the querystring, but I cannot find a way to do that. Any
help is appreciated.
And yes, it must be frames (but I am open to any suggestions). An
Iframe will only work for the left hand frame, and I might could add
javascript for the initial right hand frame, but the positioning is
"ugly." Real frames allow me a scroll bar so that when my treeview
has a larger text object it doesn't push the frame to the side, but
uses a scrollbar (it move an iframe to the side - bad).
Thank you for any help.