How do I access frames in .net?

  • Thread starter Thread starter jm
  • Start date Start date
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.
 
Thanks. I found that on MSDN. But, it really didn't help. I ended
up creating my framset from response.write.


Alvin Bruney said:
start here
http://www.15seconds.com/issue/030528.htm

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
jm said:
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.
 
I think you could use a placeholder instead of response.write...


jm said:
Thanks. I found that on MSDN. But, it really didn't help. I ended
up creating my framset from response.write.


"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
start here
http://www.15seconds.com/issue/030528.htm

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
jm said:
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.
 
What is a "placeholder?"

Laurent Jordi said:
I think you could use a placeholder instead of response.write...


jm said:
Thanks. I found that on MSDN. But, it really didn't help. I ended
up creating my framset from response.write.


"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
start here
http://www.15seconds.com/issue/030528.htm

--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
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.
 
Back
Top