473,405 Members | 2,444 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

How do I access frames in .net?

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.
Nov 18 '05 #1
3 2100
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" <jo*************@yahoo.com> wrote in message
news:c6**************************@posting.google.c om...
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.

Nov 18 '05 #2
jm
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 news:<uu**************@TK2MSFTNGP09.phx.gbl>...
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" <jo*************@yahoo.com> wrote in message
news:c6**************************@posting.google.c om...
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.

Nov 18 '05 #3
jm
What is a "placeholder?"

"Laurent Jordi" <la*****@ezlogic.mc> wrote in message news:<#E**************@tk2msftngp13.phx.gbl>...
I think you could use a placeholder instead of response.write...
"jm" <jo*************@yahoo.com> a écrit dans le message de news:
c6**************************@posting.google.com...
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

news:<uu**************@TK2MSFTNGP09.phx.gbl>...
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" <jo*************@yahoo.com> wrote in message
news:c6**************************@posting.google.c om...
> 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.

Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Geoff Cox | last post by:
Hello, I have a web site with 3 frames, top, left and right. I am wondersing if it is possible to have a button in the top frame page which when clicked opens one page in the left frame and a...
6
by: Peter Frost | last post by:
Please help I don't know if this is possible but what I would really like to do is to use On Error Goto to capture the code that is being executed when an error occurs. Any help would be much...
3
by: Stephen | last post by:
Hello, dunno if that is a Newbie question or not and maybe somebody can help. I have programmed a couple of my own pages just using a texteditor. I use very simple language and frames. No fancy...
11
by: Rob | last post by:
I know, I know, don't use frames. Well, I'm stuck with these frames and I'm trying to add functionality without a complete redsign. You can look at this as a nostalgic journey. Anyway, I've got...
0
by: thompson_38 | last post by:
I am using an embedded resource in a C# application that uses an axWebBrowser control to displays HTML pages. The resource dll is using C++. Using the res://mydll/homepage.htm, the home page...
2
by: Mogli | last post by:
I want to access the html source from VB using Webbrowser control for a page that contains frames.It does not show Frames Html source using innerhtml or outerhtml property of document.activeelement ...
1
by: troytabor | last post by:
I was having an issue at www.logolounge.com where the form in the bottom frame was no longer accessible through javascript in FireFox 1.5.0.8. I found the solution and wanted to share it. The...
13
by: kolmogolov | last post by:
/* Hi, I have removed things irrelevant to reproducing the problem. What's wrong with my code? Thanks in advance for any hint! 1166425362 */ #include <stdio.h> #include <stdlib.h> #include...
2
by: Xu, Qian | last post by:
Hello All JS-Experts, Is it possible to access 3rd-frames in Firefox or MSIE? I would like to write a html-based test framework. There are two frames. One is the test console and the other is a...
9
by: Lee | last post by:
Hi all, We need to create a page where we detect the finish of a game that's hosted on another site. We thought of doing it with frames, where we would put the game in an iframe that is...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.