metmmsc
10-08-2007, 03:13 AM
I use Expression Web as my web editing program. I use forms and I'm using this coding for my index page
--------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled 1</title>
</head>
<frameset rows="168,*">
<frame name="header" scrolling="auto" src="topfr.htm" noresize="noresize" title="navigate to mmsc" frameborder="0" marginheight="0" marginwidth="0" target=" main">
<frame name="main" scrolling="auto" src="welcome.htm" noresize="noresize" title="Marine Mammal Stranding Center" frameborder="0" marginheight="0" marginwidth="0" target="_self">
<noframes>
<p>This page uses frames, but your browser will not support them.</p>
</noframes>
</frameset>
</html>
------------------------------------------------------------------
According to Expression webs, target cannot be used in a frame tag. Everything in that coding is right except for "target="main" and target="self" and I should fine another way to do the function that these two things do. I can't find a way around it. I have to use these two, tags?, for the frame to work. Also, I can't find a way to get rid of the border between the upper and lower frames.
The address of this web page is..
http://www.marinemammalstrandingcenter.org/newindex1.htm
How can I solve this problem?
--------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled 1</title>
</head>
<frameset rows="168,*">
<frame name="header" scrolling="auto" src="topfr.htm" noresize="noresize" title="navigate to mmsc" frameborder="0" marginheight="0" marginwidth="0" target=" main">
<frame name="main" scrolling="auto" src="welcome.htm" noresize="noresize" title="Marine Mammal Stranding Center" frameborder="0" marginheight="0" marginwidth="0" target="_self">
<noframes>
<p>This page uses frames, but your browser will not support them.</p>
</noframes>
</frameset>
</html>
------------------------------------------------------------------
According to Expression webs, target cannot be used in a frame tag. Everything in that coding is right except for "target="main" and target="self" and I should fine another way to do the function that these two things do. I can't find a way around it. I have to use these two, tags?, for the frame to work. Also, I can't find a way to get rid of the border between the upper and lower frames.
The address of this web page is..
http://www.marinemammalstrandingcenter.org/newindex1.htm
How can I solve this problem?