473,809 Members | 2,757 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ASP Frameset with ASP.NET Content Frame..

Hello,
I have a ASP application that I can't afford to convert totally
over to ASP.NET, but currently I am converting the content pages that
display in the content part of the ASP frameset. When a user performs
some action the left nav frame should update (in ASP world), but with
ASP.net, I need to be able to refresh that frame. How is this
possible? I know it sounds like I want the best of both worlds, but I
really need to do this in a piece meal manner.

Any help is appreciated.

Michael
Nov 18 '05 #1
3 2134
Hi Michael,

You'll need to do this in javascript:

parent.frames['leftNav'].location.href= 'NewPage.aspx';

That should load your aspx page for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Cleave" <Cl****@bigfoot .com> wrote in message
news:97******** *************** ***@posting.goo gle.com...
Hello,
I have a ASP application that I can't afford to convert totally
over to ASP.NET, but currently I am converting the content pages that
display in the content part of the ASP frameset. When a user performs
some action the left nav frame should update (in ASP world), but with
ASP.net, I need to be able to refresh that frame. How is this
possible? I know it sounds like I want the best of both worlds, but I
really need to do this in a piece meal manner.

Any help is appreciated.

Michael

Nov 18 '05 #2
Ken,
Thanks for responding. Acutally the page that is in the content
frame is the .aspx. The frameset and the left nav is all ASP. So I
am not sure that the js that you posted will work. I don't think that
my original post was very clear. I am pretty much hosting ASP.NET
pages in an ASP frameset, and when a user completes some action on the
..aspx page, I want to be able to refresh the left nav part of the ASP
frameset.

Hopefully this is a little more clear about the problem that I am
having. I am also hopeful you have a good example for this
situation.. :)

Michael

"Ken Dopierala Jr." <kd*********@wi .rr.com> wrote in message news:<eR******* *******@TK2MSFT NGP10.phx.gbl>. ..
Hi Michael,

You'll need to do this in javascript:

parent.frames['leftNav'].location.href= 'NewPage.aspx';

That should load your aspx page for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Cleave" <Cl****@bigfoot .com> wrote in message
news:97******** *************** ***@posting.goo gle.com...
Hello,
I have a ASP application that I can't afford to convert totally
over to ASP.NET, but currently I am converting the content pages that
display in the content part of the ASP frameset. When a user performs
some action the left nav frame should update (in ASP world), but with
ASP.net, I need to be able to refresh that frame. How is this
possible? I know it sounds like I want the best of both worlds, but I
really need to do this in a piece meal manner.

Any help is appreciated.

Michael

Nov 18 '05 #3
Hi,

It really shouldn't matter. Once in the browser everything is HTML and
javascript. Use the code in any frame you want and it will load the other
page. Doesn't matter if one is ASP the other is ASP.Net or JSP or PHP or
anything. The code should work fine. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Cleave" <Cl****@bigfoot .com> wrote in message
news:97******** *************** ***@posting.goo gle.com...
Ken,
Thanks for responding. Acutally the page that is in the content
frame is the .aspx. The frameset and the left nav is all ASP. So I
am not sure that the js that you posted will work. I don't think that
my original post was very clear. I am pretty much hosting ASP.NET
pages in an ASP frameset, and when a user completes some action on the
.aspx page, I want to be able to refresh the left nav part of the ASP
frameset.

Hopefully this is a little more clear about the problem that I am
having. I am also hopeful you have a good example for this
situation.. :)

Michael

"Ken Dopierala Jr." <kd*********@wi .rr.com> wrote in message

news:<eR******* *******@TK2MSFT NGP10.phx.gbl>. ..
Hi Michael,

You'll need to do this in javascript:

parent.frames['leftNav'].location.href= 'NewPage.aspx';

That should load your aspx page for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"Cleave" <Cl****@bigfoot .com> wrote in message
news:97******** *************** ***@posting.goo gle.com...
Hello,
I have a ASP application that I can't afford to convert totally
over to ASP.NET, but currently I am converting the content pages that
display in the content part of the ASP frameset. When a user performs
some action the left nav frame should update (in ASP world), but with
ASP.net, I need to be able to refresh that frame. How is this
possible? I know it sounds like I want the best of both worlds, but I
really need to do this in a piece meal manner.

Any help is appreciated.

Michael

Nov 18 '05 #4

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

Similar topics

1
11019
by: JP | last post by:
Hi, How can I create a dynamic frameset whose content changes based on user inputs? Specifically, how do I toggle a frame within a frameset? How can I allow a user to "close" or "dock" a frame by clicking on some button and let the parent update its frameset layout? What I've been trying to do is for the child frame to send a message
14
6544
by: Alex Molochnikov | last post by:
Is there any way to embed the HTML code inside FRAMESET? Something like this: <frameset cols="50%,*"> <frame src=" ... HTML code for the frame ... "> <frame src="Frame2.html" name="main"> </frameset><noframes></noframes> I tried using a Javascript function that returns the HTML text, as in the following code:
3
16080
by: Helixpoint | last post by:
How do you do a frameset in an aspx page? -- ______________________ David Fetrow HelixPoint LLC. http://www.helixpoint.com davef@helixpoint.com
10
1761
by: IntraRELY | last post by:
I am building an Intranet application and is more of an "Application" vs. a typical "Web Application" or "Web Site". Using a FRAMSET seems like it has many benefits and gives mainly the feel of quicker access and a more streamlined application. However, am I sure you know of the drawbacks, for instance F5 to refresh (which loads the default page), I know I can work around this, but wanted to know what may suite me best in my scenario. I...
2
2289
by: TR | last post by:
Given the following frameset named MyFrameSet.htm: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <html> <head><TITLE>LaunchFrame</TITLE> <FRAMESET ROWS="88%,12%"> <FRAME id='frame1' name='frame1' SRC="placeholder.htm" > <FRAME id='frame2' name='frame2' SRC="Game.aspx"> </FRAMESET> </head>
3
3959
by: rick2910 | last post by:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="pragma" content="nocache" /> <meta name="robots" content="noindex, nofollow" /> <meta name="robots" content="noarchive" /> <title>Forum</title>
2
1712
by: Mark | last post by:
Hello. I am working on a common problem. . .restoring frameset context when a user links directly to a page. Loading the frameset isn't a problem. . .there are numerous examples of simple Javascript procedures that will do it, like this: if (top.location.href.indexOf("../index.html") == -1) top.location.href = "../index.html";
0
7337
by: joeller | last post by:
On October 13, 2006 Mark Rae wrote Hi, Firstly, I have not the slightest intention of using framesets - the reason for this post is merely to ask for assistance in furthering my understanding of XHTML. I was under the impression that XHTML fully supports framesets, hence the Frameset document type. Therefore, can anyone please tell me why the following markup doesn't validate correctly in VS.NET 2005?
4
3753
by: maminx | last post by:
Hello..i have problem, hope someone can help me..i have this frameset below : <FRAMESET ROWS="55%" COLS="37%,63%"> <FRAME NAME="runningTrade" SRC="http://runningtrade.com" scrolling="no"> <FRAMESET ROWS="33%" COLS="51%,49%"> <FRAMESET ROWS="34%,34%,35%" cols="*"> <FRAME NAME="orderBook" SRC="http://od.com" scrolling="no"> <FRAME NAME="orderBook2" SRC="http://od2.com" scrolling="no"> <FRAME NAME="OrderBook3" SRC=""...
0
9721
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9601
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10378
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10115
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9198
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6881
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5687
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3861
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3013
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.