|
 |
asp_web_howto thread: Some sort of Senior Moment...
Message #1 by "Curtis F. Barnett" <cfb@s...> on Thu, 21 Dec 2000 18:40:39 -0600
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_001A_01C06B7D.83D089E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
I am trying to build a page with 3 FRAMES in a FRAMESET. Top FRAME is the
banner head, middle FRAME is the Sign-In and Verify against an Access DB and
then becomes account name data and the column headers. When this is
accomplished I want to query a DB table and write the records in the 3rd
frame. How do I TARGET the 3rd FRAME with the records? I could use Anchors,
but that seems clumsy. Once the User is verified I just want to write the
records in a separate frame. Blank, Blank, Blank... it must be the Season.
Thanks
CFB
Message #2 by "Martin McIntyre" <martin@m...> on Fri, 22 Dec 2000 10:24:32 -0000
|
|
Put the frames in with IDs
<frameset rows="40%,40%,20%" >
<frame name="f_1" src="BannerPage.htm" id=FrameBanner >
<frame name="f_2" src="Logon.asp" id=FrameLogon>
<frame name="f_3" src="blank.htm" id=FrameUsers>
</frameset>
Then in your code you can populate the 3rd frame using this code-
parent.frames("FrameUsers").location = "Results.htm"
Results.htm holds the output from your query.
Hope this gives you enough to go on.
Martin
-----Original Message-----
From: Curtis F. Barnett [mailto:cfb@s...]
Sent: 22 December 2000 18:18
To: ASP Web HowTo
Subject: [asp_web_howto] Some sort of Senior Moment...
This is a multi-part message in MIME format.
------=_NextPart_000_001A_01C06B7D.83D089E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
I am trying to build a page with 3 FRAMES in a FRAMESET. Top FRAME is the
banner head, middle FRAME is the Sign-In and Verify against an Access DB and
then becomes account name data and the column headers. When this is
accomplished I want to query a DB table and write the records in the 3rd
frame. How do I TARGET the 3rd FRAME with the records? I could use Anchors,
but that seems clumsy. Once the User is verified I just want to write the
records in a separate frame. Blank, Blank, Blank... it must be the Season.
Thanks
CFB
minutes!
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #3 by Gregory_Griffiths@c... on Fri, 22 Dec 2000 11:24:57 +0000
|
|
Only likely to work in IE, although you can use :
parent.<frame name>.location
e.g.
parent.f_1.location
to achieve the same effect in all browsers.
> -----Original Message-----
> From: martin@m... [mailto:martin@m...]
> Sent: 22 December 2000 10:25
> To: asp_web_howto@p...
> Cc: martin@m...
> Subject: [asp_web_howto] RE: Some sort of Senior Moment...
>
>
> Put the frames in with IDs
>
> <frameset rows="40%,40%,20%" >
> <frame name="f_1" src="BannerPage.htm" id=FrameBanner >
> <frame name="f_2" src="Logon.asp" id=FrameLogon>
> <frame name="f_3" src="blank.htm" id=FrameUsers>
> </frameset>
>
> Then in your code you can populate the 3rd frame using this code-
>
> parent.frames("FrameUsers").location = "Results.htm"
>
> Results.htm holds the output from your query.
>
> Hope this gives you enough to go on.
>
> Martin
>
>
> -----Original Message-----
> From: Curtis F. Barnett [mailto:cfb@s...]
> Sent: 22 December 2000 18:18
> To: ASP Web HowTo
> Subject: [asp_web_howto] Some sort of Senior Moment...
>
>
> This is a multi-part message in MIME format.
>
> ------=_NextPart_000_001A_01C06B7D.83D089E0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: 7bit
>
> I am trying to build a page with 3 FRAMES in a FRAMESET. Top
> FRAME is the
> banner head, middle FRAME is the Sign-In and Verify against
> an Access DB and
> then becomes account name data and the column headers. When this is
> accomplished I want to query a DB table and write the records
> in the 3rd
> frame. How do I TARGET the 3rd FRAME with the records? I
> could use Anchors,
> but that seems clumsy. Once the User is verified I just want
> to write the
> records in a separate frame. Blank, Blank, Blank... it must
> be the Season.
>
> Thanks
> CFB
>
> minutes!
>
>
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #4 by "Curtis F. Barnett" <cfb@s...> on Fri, 22 Dec 2000 09:00:07 -0600
|
|
Thanks, Martin...
It was my syntax (or perhaps lack of synapse). Your solution worked
perfectly.
Curtis
> -----Original Message-----
> From: Martin McIntyre [mailto:martin@m...]
> Sent: Friday, December 22, 2000 4:25 AM
> To: ASP Web HowTo
> Subject: [asp_web_howto] RE: Some sort of Senior Moment...
>
>
> Put the frames in with IDs
>
> <frameset rows="40%,40%,20%" >
> <frame name="f_1" src="BannerPage.htm" id=FrameBanner >
> <frame name="f_2" src="Logon.asp" id=FrameLogon>
> <frame name="f_3" src="blank.htm" id=FrameUsers>
> </frameset>
>
> Then in your code you can populate the 3rd frame using this code-
>
> parent.frames("FrameUsers").location = "Results.htm"
>
> Results.htm holds the output from your query.
>
> Hope this gives you enough to go on.
>
> Martin
>
>
> -----Original Message-----
> From: Curtis F. Barnett [mailto:cfb@s...]
> Sent: 22 December 2000 18:18
> To: ASP Web HowTo
> Subject: [asp_web_howto] Some sort of Senior Moment...
>
>
> This is a multi-part message in MIME format.
>
> ------=_NextPart_000_001A_01C06B7D.83D089E0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: 7bit
>
> I am trying to build a page with 3 FRAMES in a FRAMESET. Top FRAME is the
> banner head, middle FRAME is the Sign-In and Verify against an
> Access DB and
> then becomes account name data and the column headers. When this is
> accomplished I want to query a DB table and write the records in the 3rd
> frame. How do I TARGET the 3rd FRAME with the records? I could
> use Anchors,
> but that seems clumsy. Once the User is verified I just want to write the
> records in a separate frame. Blank, Blank, Blank... it must be the Season.
>
> Thanks
> CFB
>
> minutes!
>
>
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
|
|
 |