Hi Friends,
I have a problem and I need your help to solve it.It hoes this way.
I have a navigation menu on the left side of my webpage. I need one of these buttons to link me to a page which contains a caption.Below this caption I want a frame which should display a page from some third party site.
Eg.
Navigation Menu
Home
About Myself
Family
Each of these items link me to a page. Now I want to link About Myself to a page which contains description about me.Below that description I want to display the main page of another site.
I have tried to achieve this using Frames.I have a page called frameset which contains two frames.One frame aboutme.asp and other pageDesc.asp as follows
Frameset.asp File contains
<html>
<frameset>
<frame src="aboutme.asp">
<frame src="pageDesc.asp">
</frameset>
</html>
aboutme.asp
<!--#include file="../_include/header.asp"-->
<img src="/images/top.gif" border="0"><br><br>
<table>
<tr>
<td valign="center">
<p>Hello World<br>
</tr>
</td>
</table>
<!--#include file="../_include/footer.asp"-->
pageDesc.asp
<table>
<tr><td align="center">
<%Response.Redirect("</td></tr>
</table>
I can see the contents of aboutme,asp but I cannot view the page below the description.Where I am going wrong?Please help
Thank You
I have a problem and I need your help to solve it.It hoes this way.
I have a navigation menu on the left side of my webpage. I need one of these buttons to link me to a page which contains a caption.Below this caption I want a frame which should display a page from some third party site.
Eg.
Navigation Menu
Home
About Myself
Family
Each of these items link me to a page. Now I want to link About Myself to a page which contains description about me.Below that description I want to display the main page of another site.
I have tried to achieve this using Frames.I have a page called frameset which contains two frames.One frame aboutme.asp and other pageDesc.asp as follows
Frameset.asp File contains
<html>
<frameset>
<frame src="aboutme.asp">
<frame src="pageDesc.asp">
</frameset>
</html>
aboutme.asp
<!--#include file="../_include/header.asp"-->
<img src="/images/top.gif" border="0"><br><br>
<table>
<tr>
<td valign="center">
<p>Hello World<br>
</tr>
</td>
</table>
<!--#include file="../_include/footer.asp"-->
pageDesc.asp
<table>
<tr><td align="center">
<%Response.Redirect("</td></tr>
</table>
I can see the contents of aboutme,asp but I cannot view the page below the description.Where I am going wrong?Please help
Thank You