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

Frames alternative. .net?????

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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave
Nov 18 '05 #1
9 2401
Just a side note. I have the luxury of only coding for IE

--

David Fetrow
Helixpoint LLC.
da***@helixpoint.com
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave

Nov 18 '05 #2
If the idea behind using frames is to not repeat the same elements on every
page (menus, et al), you can set up a tabled page and put common elements
into either user controls or server controls. With Whidbey (VS.NET 2005),
you also have the option of Master Pages.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave

Nov 18 '05 #3
A user control dropped onto the page (kind of like include files in .asp)
are a great replacement for a frame.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave

Nov 18 '05 #4
controls are your friends

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"DaveF" <df*****@geodecisions.com> wrote in message
news:OA**************@TK2MSFTNGP11.phx.gbl...
Just a side note. I have the luxury of only coding for IE

--

David Fetrow
Helixpoint LLC.
da***@helixpoint.com
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave


Nov 18 '05 #5
I personally hate frames, I prefer just messing with tables, and if I
absolutley need frames then I use IFRAMES. Furthermore, I can't quite tell
what you want to accomplish with those frames but I would recommend you stay
away from them.

--
Abdellah Elamiri
..net Developer
Efficacy through simplicity
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave

Nov 18 '05 #6
How do I get my hands on a Whidbey Beta????

--

David Fetrow
Helixpoint LLC.
da***@helixpoint.com
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM> wrote in
message news:%2****************@TK2MSFTNGP10.phx.gbl...
If the idea behind using frames is to not repeat the same elements on every page (menus, et al), you can set up a tabled page and put common elements
into either user controls or server controls. With Whidbey (VS.NET 2005),
you also have the option of Master Pages.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive
site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave


Nov 18 '05 #7
Wait till it's public, goto a MS Event possibly.
It's not officially out yet as a public beta I dont believe

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"DaveF" <df*****@geodecisions.com> wrote in message
news:uo**************@tk2msftngp13.phx.gbl...
How do I get my hands on a Whidbey Beta????

--

David Fetrow
Helixpoint LLC.
da***@helixpoint.com
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM> wrote in
message news:%2****************@TK2MSFTNGP10.phx.gbl...
If the idea behind using frames is to not repeat the same elements on

every
page (menus, et al), you can set up a tabled page and put common elements
into either user controls or server controls. With Whidbey (VS.NET 2005), you also have the option of Master Pages.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************** ********************
Think Outside the Box!
************************************************** ********************
"DaveF" <df*****@geodecisions.com> wrote in message
news:ek**************@TK2MSFTNGP12.phx.gbl...
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 very data intensive site.

<frameset id="FrameCols" cols = "137,*" border=0>
<frameset rows="100,*">
<frame name="logoFrame" src="logo.asp" scrolling="no">
<frame name="leftFrame" src="ThemeMenu.asp" scrolling="no">
</frameset>

<frameset id=fsRight rows = "51,*,50">
<frame name="topFrame" src="ThemeTop.asp" scrolling="no" >
<frame name="content" src="home.asp" scrolling="auto" >
<frame name="execute" src="blank.htm" scrolling="yes">
</frameset>
</frameset>

--

Dave



Nov 18 '05 #8
Hello DaveF,
How do I get my hands on a Whidbey Beta????


It's not available via a public beta yet, however, if you have an MSDN Universal subscription, it is available via the Subscriber Downloads.

--
Matt Berther
http://www.mattberther.com
Nov 18 '05 #9
Hi,

If you are talking about the techpreview2005 the 2.6 GB Download, that is
not beta is it ?

Wanted to know if we can get it on CD's during the devdays2004 event any
one any ideas?

Thanks.
Ashish M Bhonkiya
"Matt Berther" <mb******@hotmail.com> wrote in message
news:ek**************@TK2MSFTNGP10.phx.gbl...
Hello DaveF,
How do I get my hands on a Whidbey Beta????
It's not available via a public beta yet, however, if you have an MSDN

Universal subscription, it is available via the Subscriber Downloads.
--
Matt Berther
http://www.mattberther.com

Nov 18 '05 #10

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...
34
by: s c o t t | last post by:
I know Jakob Neilsen and a bunch of other usability advocates and critics usually frown on usage frames. However, most people probably seem to have at least version 5 of IE or newer and I am...
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: Com Dot | last post by:
In a frameset, the menu frame has six buttons. I would like to use mouseOver on these buttons to make images change in another frame. Does anyone have a script or know of a working site where this...
25
by: Steal | last post by:
Hi at all I try to validate this page using the link: http://validator.w3.org/ but it return that this is not a valid HTML 4.01 page please where is it error? Steil <!DOCTYPE HTML PUBLIC...
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
10
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
11
by: Jamie Dulaney | last post by:
I'm working on a website that uses frames. Some of the pages that belong in the 'main' frame (not the header (top) or contents (side)) need to be SSL encrypted. I have no problems in invoking...
7
by: Melinda | last post by:
Do i go ahead using frames? I've heard in the past that frames were not supported in some browsers & its not a good idea to use them. I suppose there are two sides to this & this would be a top...
5
by: Linvo | last post by:
Hi, I'm kind of new in using Javascript and wonder what are the pro's and con's for using frames as a means to navigate and/of split the 'screen' in a functional way? And are there alternatives?...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...

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.