Header links to target but doesn't take Mainframe with it to link

L

Lae135

I hope I explain this right. I have a header frame and can navigate back to
my target - no problem, however, when I "preview" the 2 frames together, the
link will only follow in the header, leaving the mainframe as is....
***Also, the scipt just changes on its own, for example -the column changes
on it's own once saved, like cols="*" just changes to cols="*,*" any idea
why? Other parts of the script change too...

The script for the mainframe is:
<html>
<head>
<title>CondosofCT.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset rows="54,*" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" scrolling="NO" noresize
src="headerforsearchmls.htm" >
</frameset>
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="http://coldwellbankermoves.com/property">

</frameset>
<noframes><body bgcolor="#FFFFFF" text="#000000">

</body></noframes>
</html>
 
L

Lae135

I wanted to repost the actual code that is in my "mainframe" I was able to
keep this code from not arbitrarily changing as mentioned in the first post.
I will post the changing code question in another forum; again, I need the
mainframe to go back to a target as happens in my header frame:

<html>
<head>
<title> Search MLS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<frameset rows="54,*" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" scrolling="NO" noresize
src="headerforsearchmls.htm" >
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="http://coldwellbankermoves.com/property"
</frameset>
<noframes><body bgcolor="#FFFFFF" text="#000000">

</body></noframes>
</html>
 
R

Ronx

Change
<frameset rows="54,*" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" scrolling="NO" noresize
src="headerforsearchmls.htm" >
</frameset>
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="http://coldwellbankermoves.com/property">

</frameset>

to

<frameset rows="54,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="NO" noresize
src="headerforsearchmls.htm" >
<frame name="mainFrame" src="http://coldwellbankermoves.com/property">
</frameset>

All links in headerforsearchmls.htm should be targeted to mainFrame.
 
L

Lae135

wait wait...it works in my FP03 in the "preview" and when I preview it in the
browser under the File drop down....but...on my website, once I uploaded the
changes, the header page on the top frame is not "found"....any ideas?
www.condosofct.com, select the "About Me" button then the "search MLS" button
found on the new page that loads..

thanks again....
 
S

Stefan B Rusynko

Your frameset is trying to find the page named headerforsearchmls.htm
Check your path to the file and case since your server is CaSe sensitive
 
L

Lae135

Stefan!!! That worked! I had HeaderSearchforMLS.htm I guess I have learned
to stop with upper lower case file names!! Can you try the website to see if
it navigates? www.condosofct.com choose About me then choose, Search
MLS...thank you very much
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top