473,396 Members | 1,706 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,396 software developers and data experts.

alternative to frames

ian
Does anyone know what the best alternative to using frames? I've looked at
Object but this doesn't seem to work in IE6...

TIA
Ian
Nov 17 '05 #1
10 4295
> Does anyone know what the best alternative to using frames? I've looked at
Object but this doesn't seem to work in IE6...


What do you want to do? You can use a div if you need to have a section of
your page scroll. You can use user controls if you want to componentize the
development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
Nov 17 '05 #2
> Does anyone know what the best alternative to using frames? I've looked at
Object but this doesn't seem to work in IE6...


What do you want to do? You can use a div if you need to have a section of
your page scroll. You can use user controls if you want to componentize the
development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
Nov 17 '05 #3
ian
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
Does anyone know what the best alternative to using frames? I've looked at Object but this doesn't seem to work in IE6...
What do you want to do? You can use a div if you need to have a section of
your page scroll. You can use user controls if you want to componentize

the development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--

Nov 17 '05 #4
ian
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
Does anyone know what the best alternative to using frames? I've looked at Object but this doesn't seem to work in IE6...
What do you want to do? You can use a div if you need to have a section of
your page scroll. You can use user controls if you want to componentize

the development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--

Nov 17 '05 #5
The most obvious thing to do is to separate your various sections (header
and secondary navigation) into separate ascx files. The only thing you
really need to decide is whether you want your navigation to stay in place
or if you don't mind having them scroll along with the pages, which is what
the majority of sites do today. I see nothing here that demands the use of
frames, other than separation of distinct bits of code, for which you have
an alternate solution.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"ian" <ia*@net.com> wrote in message
news:OT**************@TK2MSFTNGP11.phx.gbl...
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
Does anyone know what the best alternative to using frames? I've
looked
at Object but this doesn't seem to work in IE6...


What do you want to do? You can use a div if you need to have a section of your page scroll. You can use user controls if you want to componentize

the
development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--


Nov 17 '05 #6
The most obvious thing to do is to separate your various sections (header
and secondary navigation) into separate ascx files. The only thing you
really need to decide is whether you want your navigation to stay in place
or if you don't mind having them scroll along with the pages, which is what
the majority of sites do today. I see nothing here that demands the use of
frames, other than separation of distinct bits of code, for which you have
an alternate solution.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"ian" <ia*@net.com> wrote in message
news:OT**************@TK2MSFTNGP11.phx.gbl...
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
Does anyone know what the best alternative to using frames? I've
looked
at Object but this doesn't seem to work in IE6...


What do you want to do? You can use a div if you need to have a section of your page scroll. You can use user controls if you want to componentize

the
development. The answer depends on why you are using frames in the first
place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--


Nov 17 '05 #7
I agree with Chris. Web User Controls sound like the best way to go to
divide up your page sections.
Here's more info:
http://msdn.microsoft.com/library/de...ercontrols.asp
http://msdn.microsoft.com/library/de...ercontrols.asp
http://msdn.microsoft.com/library/de...ebControls.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"ian" <ia*@net.com> wrote in message
news:uY*************@TK2MSFTNGP10.phx.gbl...
Does anyone know what the best alternative to using frames? I've looked at
Object but this doesn't seem to work in IE6...

TIA
Ian

Nov 17 '05 #8
I agree with Chris. Web User Controls sound like the best way to go to
divide up your page sections.
Here's more info:
http://msdn.microsoft.com/library/de...ercontrols.asp
http://msdn.microsoft.com/library/de...ercontrols.asp
http://msdn.microsoft.com/library/de...ebControls.asp

--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"ian" <ia*@net.com> wrote in message
news:uY*************@TK2MSFTNGP10.phx.gbl...
Does anyone know what the best alternative to using frames? I've looked at
Object but this doesn't seem to work in IE6...

TIA
Ian

Nov 17 '05 #9
ian
Thanks, this looks like the way to go.

"Chris Jackson" <ch****@mvps.org> wrote in message
news:uB****************@TK2MSFTNGP12.phx.gbl...
The most obvious thing to do is to separate your various sections (header
and secondary navigation) into separate ascx files. The only thing you
really need to decide is whether you want your navigation to stay in place
or if you don't mind having them scroll along with the pages, which is what the majority of sites do today. I see nothing here that demands the use of
frames, other than separation of distinct bits of code, for which you have
an alternate solution.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"ian" <ia*@net.com> wrote in message
news:OT**************@TK2MSFTNGP11.phx.gbl...
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
> Does anyone know what the best alternative to using frames? I've looked
at
> Object but this doesn't seem to work in IE6...

What do you want to do? You can use a div if you need to have a section
of your page scroll. You can use user controls if you want to
componentize the
development. The answer depends on why you are using frames in the

first place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--



Nov 17 '05 #10
ian
Thanks, this looks like the way to go.

"Chris Jackson" <ch****@mvps.org> wrote in message
news:uB****************@TK2MSFTNGP12.phx.gbl...
The most obvious thing to do is to separate your various sections (header
and secondary navigation) into separate ascx files. The only thing you
really need to decide is whether you want your navigation to stay in place
or if you don't mind having them scroll along with the pages, which is what the majority of sites do today. I see nothing here that demands the use of
frames, other than separation of distinct bits of code, for which you have
an alternate solution.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--
"ian" <ia*@net.com> wrote in message
news:OT**************@TK2MSFTNGP11.phx.gbl...
Perhaps something like...

| Logo | Main Navigation | Banner | Email
|
|_______________|______________|_________|________ _|_
| |
|
| Secondary | Main Page
|
| Navigation |
|
| |
|
Thanks
Ian

"Chris Jackson" <ch****@mvps.org> wrote in message
news:eD**************@TK2MSFTNGP11.phx.gbl...
> Does anyone know what the best alternative to using frames? I've looked
at
> Object but this doesn't seem to work in IE6...

What do you want to do? You can use a div if you need to have a section
of your page scroll. You can use user controls if you want to
componentize the
development. The answer depends on why you are using frames in the

first place.

--
Chris Jackson
Software Engineer
Microsoft MVP - Windows XP
Windows XP Associate Expert
--



Nov 17 '05 #11

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

Similar topics

12
by: David | last post by:
everywhere I go, i get told "don't use frames, use php instead" ok... so how do i go about it? I want a top banner that doesn't move, and a "contents" type list on the left (that may have a...
3
by: McKirahan | last post by:
I said I wouldn't use "eval()" anymore but I need help to do it. Below is some stripped-down code (4 lines; watch for word-wrap) extracted from USGA.COM that preloads images: main_nav_home_F1...
5
by: Peter N | last post by:
How to I eliminate the gap between frames without using the 'framespacing' attribute in the <frameset> tag? (I'm using IE 6) Can I use CSS do this? Thanks Peter (Please remove the...
6
by: Eric Bodden | last post by:
Hi! I would like to use alternative stylesheets in combination with frames. Is that doable? My problem ist that when I - as the user - switch the stylesheet of the framset page, then the...
1
by: SpamProof | last post by:
I have a frameset that breaks my page into 3 sections. Top, middle & bottom. My navigation is in the middle part. I use the following code to change my top & bottom page when a user clicks a...
20
by: Tammy | last post by:
What would be a good alternative to using frames? I need something that will section my webpage into two halves and can change both frames on a single click. Thanks in Advance, Tammy
0
by: ian | last post by:
Does anyone know what the best alternative to using frames? I've looked at Object but this doesn't seem to work in IE6... TIA Ian
2
by: C P | last post by:
I'm trying to build a custom web control and I know that frames aren't a great idea, but I'm not clear on how else to get what I'd like. I'd like a tree (for navigation) in a left hand pane, and...
9
by: DaveF | last post by:
I have an ASP site that has a frameset below. I am in the process of redesigning/coding in ASP.NET. What are my alternatives to framesets. The execute frame does most of the processing. This is a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.